GET
/
background-checks
/
{id}
Get a specific background check
curl --request GET \
  --url https://api.syntage.com/background-checks/{id} \
  --header 'X-API-Key: <api-key>'
{
  "@context": "<any>",
  "@id": "/background-checks/91ab5678-1234-5678-9abc-def012345678",
  "@type": "BackgroundCheck",
  "id": "91ab5678-1234-5678-9abc-def012345678",
  "link": "/entities/91ab5678-1234-5678-9abc-def012345678",
  "country": "MX",
  "score": 85.5,
  "status": "completed",
  "scores": [
    {
      "id": "73de0123-4567-8901-bcde-f23456789012",
      "category": "criminal_record",
      "score": 92.3,
      "status": "clean",
      "recordsCount": 3
    }
  ],
  "databaseStatuses": [
    {
      "id": "64ef1234-5678-9012-cdef-345678901234",
      "database": {
        "id": "55f01234-5678-9012-cdef-345678901234",
        "name": "Mexico Criminal Records Database",
        "country": "MX"
      },
      "category": "criminal_record",
      "status": "completed"
    }
  ],
  "files": [
    {
      "@id": "/files/91106968-1abd-4d64-85c1-4e73d96fb997",
      "@type": "File",
      "id": "91106968-1abd-4d64-85c1-4e73d96fb997",
      "type": "<string>",
      "resource": "<string>",
      "mimeType": "<string>",
      "extension": "<string>",
      "size": 40544,
      "filename": "<string>",
      "createdAt": "2020-01-01T12:15:00.000Z",
      "updatedAt": "2020-01-01T12:15:00.000Z"
    }
  ],
  "createdAt": "2020-01-01T12:15:00.000Z",
  "updatedAt": "2020-01-01T12:15:00.000Z"
}

Authorizations

X-API-Key
string
header
required

Your API key is available in the Production and Sandbox dashboards.

Path Parameters

id
string<uuid>
required

Response

Background Check

id
string<uuid>
required
Example:

"91ab5678-1234-5678-9abc-def012345678"

Entity link

Example:

"/entities/91ab5678-1234-5678-9abc-def012345678"

country
enum<string>
required

Country scope for background check:

  • MX: Mexico-specific background checks
  • ALL: International background checks across multiple countries
Available options:
MX,
ALL
Example:

"MX"

score
number
required

Overall background check score

Example:

85.5

status
enum<string>
required

Status of the background check:

  • pending: Background check is being processed
  • completed: Background check has been completed successfully
  • error: Background check encountered an error during processing
Available options:
pending,
completed,
error
Example:

"completed"

scores
object[]
required

Detailed scores by category

databaseStatuses
object[]
required

Status information for each database checked

files
object[]
required

Associated files including PDF reports

createdAt
string
required

Date and time the resource was created

Example:

"2020-01-01T12:15:00.000Z"

updatedAt
string
required

Date and time the resource was last updated

Example:

"2020-01-01T12:15:00.000Z"

@context
any
@id
string<iri-reference>

Background Check IRI reference

Example:

"/background-checks/91ab5678-1234-5678-9abc-def012345678"

@type
string
default:BackgroundCheck