Skip to main content
curl -X GET https://api.dronebundle.com/v1/projects/01964c6b-7a3e-7f00-8000-abc123def456 \
  -H "Authorization: Bearer v1_your_api_key_here"
{
  "id": "01964c6b-7a3e-7f00-8000-abc123def456",
  "name": "Bridge Inspection Q2",
  "description": "Quarterly drone inspection of the Westfield Bridge.",
  "status": "in_progress",
  "start_date": "2026-04-15",
  "end_date": "2026-04-30",
  "created": 1743400000000,
  "updated": 1743500000000,
  "archived": false,
  "external_id": "PROJ-1042",
  "created_by": {
    "id": "user-abc-123",
    "email": "sarah@example.com",
    "first_name": "Sarah",
    "last_name": "Chen",
    "profile_picture": null
  }
}
Requires an API key with read_only or full_access scope.

Path parameters

projectId
string
required
The unique identifier of the project.

Response

id
string
Project ID.
name
string
Project name.
description
string
Project description.
status
string
Project status.
start_date
string
Start date in ISO 8601 format.
end_date
string | null
End date in ISO 8601 format, or null if not set.
created
number
Unix timestamp (milliseconds) when the project was created.
updated
number
Unix timestamp (milliseconds) when the project was last updated.
archived
boolean
Whether the project is archived.
external_id
string | null
External identifier, if set.
laanc_number
string | null
LAANC authorization number, if set.
created_by
object
The user or API key that created the project.
curl -X GET https://api.dronebundle.com/v1/projects/01964c6b-7a3e-7f00-8000-abc123def456 \
  -H "Authorization: Bearer v1_your_api_key_here"
{
  "id": "01964c6b-7a3e-7f00-8000-abc123def456",
  "name": "Bridge Inspection Q2",
  "description": "Quarterly drone inspection of the Westfield Bridge.",
  "status": "in_progress",
  "start_date": "2026-04-15",
  "end_date": "2026-04-30",
  "created": 1743400000000,
  "updated": 1743500000000,
  "archived": false,
  "external_id": "PROJ-1042",
  "created_by": {
    "id": "user-abc-123",
    "email": "sarah@example.com",
    "first_name": "Sarah",
    "last_name": "Chen",
    "profile_picture": null
  }
}

Errors

404 Not Found - Project not found.
{
  "message": "Project not found"
}