Skip to content
DeepfireDeepfire Docs
Esc
navigateopen⌘Jpreview

List your organization's simulations

Newest first, keyset-paginated. Includes simulations run by anyone in your organization (web app or API) and the automatic simulations Deepfire runs on fires in your jurisdiction. List items do not carry result; fetch the simulation for that.

GET/v1/fire-spread/simulations
Authorization
AuthorizationBearer token (JWT) · headerrequired
Token from `POST /v1/token` — see the Authentication guide.
Query parameters
sincestring
Only simulations created at or after this instant. An ISO 8601 instant (`2026-09-01T12:00:00Z`) or a date (`2026-09-01`, midnight UTC).
limitinteger
Page size, 1–100.
min 1 · max 100 · default: 20
cursorstring
`nextCursor` from the previous page. Omit for the first page.
Responses
200A page of simulations.
itemsSimulationListItem[]
Show properties
Array of SimulationListItem
idstring<uuid>
statusstring
Allowed:QUEUEDCOMPLETEDNO_SPREADFAILED
clusterIdstring<uuid> | null
fireNamestring | null
Name of the fire the cluster belongs to, when Deepfire has linked it to one.
locationNamestring | null
latitudenumber
longitudenumber
modelstring
durationHoursinteger
ensembleMembersinteger
burnedAreaM2number | null
autoboolean
True for the simulations Deepfire runs automatically on fires in your jurisdiction.
createdAtstring<date-time>
errorMessagestring | null
linksobject
Show properties
selfstring<uri>
nextCursorstring | null
Pass as `cursor` to fetch the next page; `null` on the last page.
422`invalid-request`: bad `cursor`, `since` or `limit`.
codestring
Stable machine-readable code: `invalid-request`, `cluster-not-found`, `simulation-not-found`, `too-many-simulations`.
messagestring
Try it
Server
Authorization
Parameters
Request
curl -X GET "https://api.deepfire.co/v1/fire-spread/simulations" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "items": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "status": "QUEUED",
      "clusterId": "a3d24843-7014-4490-bdd3-b7cb39b400c8",
      "fireName": "string",
      "locationName": "string",
      "latitude": 0,
      "longitude": 0,
      "model": "string",
      "durationHours": 0,
      "ensembleMembers": 0,
      "burnedAreaM2": 0,
      "auto": true,
      "createdAt": "2019-08-24T14:15:22Z",
      "errorMessage": "string",
      "links": {
        "self": "http://example.com"
      }
    }
  ],
  "nextCursor": "string"
}