Skip to main content
GET
/
v1
/
extractions
/
{id}
Get extraction status or result
curl --request GET \
  --url https://api.sky-scribe.com/v1/extractions/{id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "completed",
  "id": "<string>",
  "data": {
    "json": {
      "results": {}
    },
    "doc": {
      "url": "<string>"
    },
    "pdf": {
      "url": "<string>"
    },
    "txt": {
      "url": "<string>"
    },
    "markdown": "<string>",
    "srt": {
      "url": "<string>"
    },
    "vtt": {
      "url": "<string>"
    },
    "csv": {
      "url": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200 - application/json

Extraction status or result

status
enum<string>
required
Available options:
completed
id
string
required
data
object
required

Map of requested formats to their data. Only formats specified in the request will be present. If no formats were specified, defaults to json only.