POST
/
extract
Extract list of items from an environment
curl --request POST \
  --url https://api.praxos.ai/extract \
  --header 'API-key: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "environment_id": "<string>",
  "label": "<string>"
}'
{
  "items": [
    {
      "id": "<string>",
      "data": {}
    }
  ]
}

Authorizations

API-key
string
header
required

API key for authentication

Body

application/json
environment_id
string

ID of the environment to extract items from

label
string

Label of the items to extract, it should be the same as it appears in the ontology

Response

List of items extracted successfully

items
object[]