GET
/
search
/
persons
curl --request GET \
  --url https://jobs-api.registercheck.de/api/v2/search/persons \
  --header 'Authorization: Bearer <token>'
{
  "persons": [
    {
      "id": "<string>",
      "full_name": "<string>",
      "first_name": "<string>",
      "last_name": "<string>",
      "city": "<string>",
      "birth_year": 123,
      "is_visible": true
    }
  ],
  "total_count": 123,
  "page_count": 123,
  "pagination": {
    "offset": 123,
    "limit": 123
  }
}

Authorizations

Authorization
string
header
required

Enter your API key

Query Parameters

name
string | null

Person full name (partial match)

first_name
string | null

Person first name

last_name
string | null

Person last name

city
string | null

Person city

birth_date
string | null

Person birth date

birth_year
integer | null

Person birth year

offset
integer
default:0

Number of items to skip

Required range: x >= 0
limit
integer
default:10

Maximum number of items to return

Required range: 1 <= x <= 100

Response

200
application/json

Successful Response

Model for person search response