Browse documentation
Applicants

List Applicants

get/v1/applicants

List applicants for the tenant, newest first. - ``status`` filters by ``internal_status``. - ``q`` substring-matches ``external_id``, ``email_hash``, or ``legal_name_*`` (case-insensitive on names). - ``after`` is the opaque cursor returned by the previous call.

Authentication

Send your tenant secret key as a Bearer token. Keep secret keys on your server; never ship them in browser or mobile code.

Parameters

status
query · optional

No additional parameter description.

q
query · optional

No additional parameter description.

limit
query · optional

No additional parameter description.

after
query · optional

No additional parameter description.

Example request

cURL
curl --request GET \
  --url 'https://api.fideralabs.com/v1/applicants' \
  --header 'Authorization: Bearer $FIDERA_API_KEY'

Responses

200Successful Response
items
ApplicantSummary[]required

No additional field description.

next_cursor
string | nullrequired

No additional field description.

application/json
{
  "items": [
    {
      "business_name": {},
      "created_at": "2026-07-29T12:00:00Z",
      "entity_type": "string",
      "external_id": {},
      "id": "00000000-0000-0000-0000-000000000000",
      "internal_status": "string",
      "legal_name_first": {},
      "legal_name_last": {},
      "nationality": {},
      "risk_tier": "string",
      "updated_at": "2026-07-29T12:00:00Z"
    }
  ],
  "next_cursor": "string"
}
422Validation Error
detail
ValidationError[]

No additional field description.

Operation ID

list_applicants_v1_applicants_get