Flambe docs

Get an import

Fetch one import. Poll this to follow a job to completion; a one- to two-second interval is plenty, and `/api/events/stream` avoids polling altogether.

GET
/api/imports/{id}

Fetch one import. Poll this to follow a job to completion; a one- to two-second interval is plenty, and /api/events/stream avoids polling altogether.

Authorization

bearerAuth
AuthorizationBearer <token>

A Clerk session JWT. Obtain one with a Clerk frontend SDK (session.getToken()) or, for server-to-server use, with a Clerk machine token. The token's sub claim is the Flambe user id that scopes every request.

In: header

Path Parameters

id*string

Import identifier.

Formatuuid

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/api/imports/497f6eca-6276-4993-bfeb-53cbbbba6f08"

{  "id": "4d1f8c2e-9a3b-4f1e-8c7d-1b2a3c4d5e6f",  "type": "web",  "status": "completed",  "url": "https://www.seriouseats.com/best-chocolate-chip-cookies",  "recipe_id": "9b8a7c6d-5e4f-3a2b-1c0d-9e8f7a6b5c4d",  "created_at": "2026-09-10T18:22:04.512Z",  "updated_at": "2026-09-10T18:22:31.004Z"}