Developer Resources

Developer Documentation

Build powerful integrations with our comprehensive REST API. Manage conferences, process payments, and automate workflows.

Base URL
https://api.conferences.center/v1

Authentication

All API requests require authentication using a Bearer token. Include your API key in the Authorization header. Generate API keys from your account settings under Settings → API Keys.

cURL
curl -X GET "https://api.conferences.center/v1/conferences" \
  -H "Authorization: Bearer cc_live_abc123..." \
  -H "Content-Type: application/json"

Conferences API

Manage conferences, submissions, and reviews through the following endpoints.

GET/v1/conferences
POST/v1/conferences
GET/v1/conferences/:id
PUT/v1/conferences/:id
DELETE/v1/conferences/:id
GET/v1/conferences/:id/submissions
POST/v1/conferences/:id/submissions
GET/v1/conferences/:id/reviews

Response Format

All responses are returned in JSON format with a success boolean and a data field for successful requests.

Success Response

200 OK
{
  "success": true,
  "data": [
    {
      "id": "conf_a1b2c3",
      "title": "AI Summit 2025",
      "status": "published",
      "start_date": "2025-06-15",
      "end_date": "2025-06-17",
      "location": "Dubai, UAE",
      "attendee_count": 1240
    }
  ],
  "pagination": {
    "page": 1,
    "per_page": 20,
    "total": 48
  }
}

Error Response

401 Unauthorized
{
  "success": false,
  "error": {
    "code": "invalid_api_key",
    "message": "The provided API key is invalid or expired.",
    "docs_url": "https://conferences.center/docs/auth"
  }
}

Webhooks

Receive real-time notifications when events happen in your conferences. Configure webhook endpoints in your dashboard.

Webhook Payload
{
  "event": "submission.created",
  "timestamp": "2025-02-10T14:30:00Z",
  "data": {
    "id": "sub_x1y2z3",
    "conference_id": "conf_a1b2c3",
    "title": "Neural Architecture Search",
    "status": "pending_review"
  }
}

SDKs & Libraries

Official client libraries to speed up your integration.

JavaScript

v2.1.0

Python

v1.8.0

PHP

Coming Soon

Ruby

Coming Soon

Ready to Start Building?

Create an account to get your API keys and start integrating.