Spacecrafts
Authorization Required

Spacecrafts

Fetch ISRO Spacecrafts

Retrieve a paginated list of all Indian spacecrafts, planetary probes, and satellites, or query by slug.

Endpoint

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

Parameters

NameTypeStatusDescription
pageQueryOptionalPage number (default: 1).
per_pageQueryOptionalItems per page (default: 20, max: 100).
qQueryOptionalSearch query matching spacecraft name, mission, launcher or company.
statusQueryOptionalFilter by status (active, completed, planned…).
expandQueryOptionalExpand relationships dynamically (e.g. `company`, `upcoming_launch`, `customer_satellites`).

Request Snippet

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

Response Sample

{
  "data": [
    {
      "id": "12",
      "type": "spacecraft",
      "attributes": {
        "id": 12,
        "isro_id": 12,
        "name": "Chandrayaan-3",
        "slug": "chandrayaan-3",
        "mission_type": "scientific",
        "status": "completed",
        "launch_date": "2023-07-14",
        "orbit_type": "Lunar",
        "mass": 3900.0,
        "created_at": "2026-05-10T09:16:42.244Z",
        "launch_vehicle": "LVM3-M4",
        "launcher": {
          "id": 5,
          "name": "LVM3",
          "slug": "lvm3"
        },
        "image_url": "https://..."
      }
    }
  ],
  "meta": { "page": 1, "per_page": 20, "total": 54, "total_pages": 3 }
}