Skip to main content
GET
/
extractors
/
schemas
/
{extractor}
/
{version}
Get Config Schema
curl --request GET \
  --url https://{cluster}.cognitedata.com/api/v1/projects/{project}/extractors/schemas/{extractor}/{version} \
  --header 'Authorization: Bearer <token>'
{}

Authorizations

Authorization
string
header
required

Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.

Path Parameters

extractor
string
required

External ID of the extractor to get the schema for.

Maximum string length: 255
version
string
required

Version of the extractor to fetch schema for.

Example:

"1.2.3"

Response

Extractor configuration schema as JSON.

JSON Schema object.

Last modified on April 23, 2026