Skip to main content
GET
/
v1
/
issuer-applications
curl https://api.truthlocks.com/v1/issuer-applications?status=SUBMITTED&limit=10 \
  -H "X-API-Key: tlk_your_key_here"
{
  "applications": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "tenant_id": "440e8400-e29b-41d4-a716-446655440000",
      "legal_name": "Acme Corp",
      "display_name": "Acme",
      "requested_trust_tier": "verified_org",
      "status": "SUBMITTED",
      "submitted_at": "2026-04-14T11:00:00Z",
      "created_at": "2026-04-14T10:00:00Z",
      "updated_at": "2026-04-14T11:00:00Z"
    }
  ],
  "total": 1,
  "limit": 20,
  "offset": 0
}
Returns a paginated list of issuer applications belonging to your tenant. Use the status query parameter to filter by application state.

Parameters

status
string
Filter by application status. Accepted values: DRAFT, SUBMITTED, IN_REVIEW, APPROVED, REJECTED, SUSPENDED.
limit
integer
Maximum number of results to return. Defaults to 20, maximum 100.
offset
integer
Number of results to skip for pagination. Defaults to 0.

Responses

{
  "applications": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "tenant_id": "440e8400-e29b-41d4-a716-446655440000",
      "legal_name": "Acme Corp",
      "display_name": "Acme",
      "requested_trust_tier": "verified_org",
      "status": "SUBMITTED",
      "submitted_at": "2026-04-14T11:00:00Z",
      "created_at": "2026-04-14T10:00:00Z",
      "updated_at": "2026-04-14T11:00:00Z"
    }
  ],
  "total": 1,
  "limit": 20,
  "offset": 0
}
curl https://api.truthlocks.com/v1/issuer-applications?status=SUBMITTED&limit=10 \
  -H "X-API-Key: tlk_your_key_here"