Developer Resources
Developer Documentation
Build powerful integrations with our comprehensive REST API. Manage conferences, process payments, and automate workflows.
https://api.conferences.center/v1Authentication
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 -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.
/v1/conferences/v1/conferences/v1/conferences/:id/v1/conferences/:id/v1/conferences/:id/v1/conferences/:id/submissions/v1/conferences/:id/submissions/v1/conferences/:id/reviewsResponse Format
All responses are returned in JSON format with a success boolean and a data field for successful requests.
Success Response
{
"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
{
"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.
{
"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.
JavaScriptv2.1.0
Pythonv1.8.0
PHPComing Soon
RubyComing Soon
Ready to Start Building?
Create an account to get your API keys and start integrating.