Skip to main content
REST API — JSON responses

Conference Alert for Developers

Access 50,000+ academic conferences programmatically. Build notification bots, calendar integrations, research dashboards, and more with our simple REST API.

50K+
Conferences in the index
150+
Countries covered
JSON
Response format
Free
Access tier available
Base URL https://www.conferencealert.com/api

What you can build

Alert systems

Build custom email or push notification bots that alert researchers when a new conference matches their interests.

Calendar integrations

Sync conference deadlines directly into Google Calendar, Outlook, or any iCal-compatible app.

Research tools

Power academic dashboards, trend analysis tools, or university intranets with live conference data.

University portals

Embed relevant conference listings into faculty or department pages automatically.

API Reference

GET /api/conferences

List upcoming conferences with optional filters for country, topic, and date range.

country topic from_date to_date page
GET /api/conferences/{id}

Retrieve full details for a single conference by its ID.

GET /api/countries

List all countries that have at least one active conference.

GET /api/topics

List all available conference topics / categories.

Example request

cURL GET /api/conferences
curl -G "https://www.conferencealert.com/api/conferences" \
  -d "country=us" \
  -d "topic=machine-learning" \
  -d "from_date=2026-05-01" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"
Response 200 OK
{
  "data": [
    {
      "id": 48291,
      "title": "International Conference on Machine Learning",
      "acronym": "ICML 2026",
      "start_date": "2026-07-18",
      "end_date": "2026-07-24",
      "city": "Vienna",
      "country": "Austria",
      "topic": "Machine Learning",
      "submission_deadline": "2026-02-01",
      "url": "https://www.conferencealert.com/event/48291"
    }
  ],
  "meta": {
    "total": 1284,
    "per_page": 20,
    "current_page": 1
  }
}

Authentication

API access requires a key passed as a Bearer token in the Authorization header. A free tier is available for personal and academic projects (up to 1,000 requests/day). Commercial usage requires a paid plan.

Request your API key

Rate limits

Plan Requests / day Requests / minute Cost
Free 1,000 10 Free
Starter 10,000 60 Contact us
Pro 100,000 300 Contact us
Enterprise Unlimited Custom Contact us

Ready to start building?

Get your free API key and start integrating Conference Alert data into your project today.

Get API access