Upcoming Launches
Authorization Required

Upcoming Launches

ISRO & NewSpace Flight Schedules

Real-time launch calendars, target orbital payloads, launch pads, countdown statuses, and live YouTube webcast URLs (youtube_video_url) for future spaceflights. When a launch date or schedule is tentative, the API automatically updates the status to "TBD" and sets launch_date and launch_date_end to null.

Endpoint

GEThttps://space.veerexa.com/api/v1/upcoming_launches

Parameters

NameTypeStatusDescription
pageQueryOptionalPage number.
qQueryOptionalSearch by mission name or carrier.
expandQueryOptionalExpand relationships dynamically (e.g. `company`, `spacecrafts`, `customer_satellites`).

Request Snippet

curl -X GET "https://space.veerexa.com/api/v1/upcoming_launches?page=1&q=Chandrayaan&expand=value" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response Sample

{
  "data": [
    {
      "id": "1",
      "type": "upcoming_launch",
      "attributes": {
        "id": 1,
        "mission_name": "Gaganyaan G1",
        "slug": "gaganyaan-g1",
        "launch_date": "2026-11-20T00:00:00.000Z",
        "launch_date_end": "2026-11-30T00:00:00.000Z",
        "status": "upcoming",
        "description": "First uncrewed orbital flight test.",
        "youtube_video_url": "https://www.youtube.com/watch?v=G3ksE9-O3yM",
        "launch_date_message": "Estimated launch date. Subject to change.",
        "created_at": "2026-05-10T15:12:51.639Z",
        "name": "Gaganyaan G1",
        "company_name": "ISRO",
        "company_logo_url": "https://...",
        "image_url": "https://..."
      }
    },
    {
      "id": "2",
      "type": "upcoming_launch",
      "attributes": {
        "id": 2,
        "mission_name": "Mangalyaan 2",
        "slug": "mangalyaan-2",
        "launch_date": null,
        "launch_date_end": null,
        "status": "TBD",
        "description": "Mars Orbiter Mission 2 (MOM 2) planned scientific orbiter.",
        "youtube_video_url": null,
        "launch_date_message": "launch date not decided yet",
        "created_at": "2026-06-01T10:00:00.000Z",
        "name": "Mangalyaan 2",
        "company_name": "ISRO",
        "company_logo_url": "https://...",
        "image_url": "https://..."
      }
    }
  ]
}