Skip to main content
GET
/
styles
/
extractions
/
{id}
Get an extraction job
curl --request GET \
  --url http://localhost:3001/api/v1/styles/extractions/{id} \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "id": "2e7d9c1a-4b5f-4a6c-8d3e-9f0a1b2c3d4e",
    "type": "style.extract",
    "status": "completed",
    "createdAt": "2026-06-16T10:00:00.000Z",
    "result": {
      "style": {
        "id": "7c1a9e02-3d4b-4f8a-9b2c-1e0d5a6f3b8c"
      }
    }
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string<uuid>
required

Query Parameters

wait
enum<string>

When true, hold the connection until the job is terminal (up to ~55s), then return its current state. On timeout the job may still be pending/processing; re-issue the request to keep waiting.

Available options:
true

Response

OK

data
object
required