Retrieve a screening by its unique identifier. Returns the latest state including partial or in-progress states.
curl --request GET \
--url https://api.beltic.com/v1/screenings/{id} \
--header 'X-Api-Key: <api-key>'{
"data": {
"type": "screening/watchlist",
"id": "<string>",
"attributes": {
"status": "pending",
"execution_mode": "sync",
"query": {},
"has_match": true,
"created_at": "<string>",
"completed_at": "<string>",
"matched_lists": [
{
"name": "<string>",
"url": "<string>",
"list_type": "<string>",
"list_types": [
"<string>"
],
"slug": "<string>",
"flag_code": "<string>",
"country_code": "<string>",
"entities": [
{
"name": "<string>",
"alias_type": "<string>",
"birthdates": [
{
"day": "<string>",
"year": "<string>",
"month": "<string>",
"granularity": "<string>"
}
],
"birthdate": "<string>"
}
],
"match_types": [
"<string>"
]
}
],
"started_at": "<string>",
"errors": [
{
"code": "<string>",
"message": "<string>",
"details": {}
}
],
"ignore_list": [
"<unknown>"
]
},
"relationships": {
"account": {
"data": {
"type": "account",
"id": "<string>"
}
},
"business": {
"data": {
"type": "business",
"id": "<string>"
}
}
}
}
}API key for authentication. Access https://console.beltic.com/ to obtain your API key.
Screening ID
"550e8400-e29b-41d4-a716-446655440000"
Screening retrieved successfully
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.beltic.com/v1/screenings/{id} \
--header 'X-Api-Key: <api-key>'{
"data": {
"type": "screening/watchlist",
"id": "<string>",
"attributes": {
"status": "pending",
"execution_mode": "sync",
"query": {},
"has_match": true,
"created_at": "<string>",
"completed_at": "<string>",
"matched_lists": [
{
"name": "<string>",
"url": "<string>",
"list_type": "<string>",
"list_types": [
"<string>"
],
"slug": "<string>",
"flag_code": "<string>",
"country_code": "<string>",
"entities": [
{
"name": "<string>",
"alias_type": "<string>",
"birthdates": [
{
"day": "<string>",
"year": "<string>",
"month": "<string>",
"granularity": "<string>"
}
],
"birthdate": "<string>"
}
],
"match_types": [
"<string>"
]
}
],
"started_at": "<string>",
"errors": [
{
"code": "<string>",
"message": "<string>",
"details": {}
}
],
"ignore_list": [
"<unknown>"
]
},
"relationships": {
"account": {
"data": {
"type": "account",
"id": "<string>"
}
},
"business": {
"data": {
"type": "business",
"id": "<string>"
}
}
}
}
}