GET
/
extractions

Authorizations

Authorization
string
headerrequired

Sensible uses API keys to authenticate requests. Keep your API keys secure and do not share them publicly accessible areas such as GitHub, client-side code, etc. Authentication to the API is performed via Bearer Authentication. Provide your API key as the bearer auth value.

Query Parameters

start_date
string
default: 1970-01-01T00:00:00.000Z

Retrieves extractions with a created date that is equal to or later than this date-time. The default is the unix epoch.

end_date
string

Retrieves extractions with a created date that is equal to or earlier than this date-time. The default is the current date-time.

limit
number
default: 20

Use the limit to define the number of items you recieve on each page of the paginated response. The default is 20.

continuation_token
string

Get the next page of results by making a new request and passing the opaque continuation_token parameter that Sensible returns in the current page of responses. Sensible returns a null continuation_token in the response to indicate the last page.

configuration_ids
string

Comma-delimited list of configurations by which to filter the retrieved extractions.

document_type_ids
string

Comma-delimited list of document types by which to filter the retrieved extractions.

environments
string

Comma-delimited list of environments (PRODUCTION, DEVELOPMENT) by which to filter the retrieved extractions.

statuses
string

Comma-delimited list of statuses (WAITING, PROCESSING, FAILED, COMPLETE) by which to filter the retrieved extractions.

min_coverage
number

Minimum extraction coverage score by which to filter the retrieved extractions. For more information about scoring, see Monitoring extractions.

max_coverage
number

Maximum extraction coverage score by which to filter the retrieved extractions. For more information about scoring, see Monitoring extractions.

Response

200 - application/json
extractions
object[]
cutoff_date
string

DEPRECATED. The continuation_token and limit parameters replace this parameter. DESCRIPTION: Pass the cutoff_date parameter in the next request as the end_date parameter to retrieve the next page of extractions. Note that since Sensible applies the date range filters before all other filters, the cutoff_date can represent the date-time of an extraction that Sensible retrieved using the date range filter, and then removed using other filters.