Skip to main content
GET
/
v1
/
credentials
List credentials
curl --request GET \
  --url https://api.example.com/v1/credentials
{
  "items": [
    {
      "subject": {
        "id": "<string>",
        "registration_number": "<string>",
        "jurisdiction": "<string>",
        "legal_form": "<string>"
      },
      "claims": {
        "registered_address": {
          "line1": "<string>",
          "city": "<string>",
          "country": "<string>",
          "line2": "<string>",
          "state_or_region": "<string>",
          "postal_code": "<string>"
        },
        "beneficial_owners": [
          {
            "full_name": "<string>",
            "ownership_percent": 50,
            "person_id": "<string>",
            "role": "<string>"
          }
        ],
        "tax_id_verified": true,
        "jurisdiction": "<string>"
      },
      "id": "<string>",
      "credential_id": "<string>",
      "issuer_did": "<string>",
      "status_list_index": 1,
      "kid": "<string>",
      "signed_payload": "<string>",
      "evidence_refs": [
        "<string>"
      ],
      "issued_at": "2023-11-07T05:31:56Z",
      "expires_at": "2023-11-07T05:31:56Z",
      "vct": "<string>",
      "revoked_at": "2023-11-07T05:31:56Z",
      "revocation_reason": "<string>",
      "created_via": "api",
      "developer_id": "<string>"
    }
  ],
  "pagination": {
    "next_cursor": "<string>",
    "has_more": true,
    "prev_cursor": "<string>",
    "total": 1
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.beltic.com/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

subject_id
string
developer_id
string
credential_type
enum<string>
Available options:
business,
user,
agent_authorization,
outcome_attestation
attestation_type
string
status
enum<string>
Available options:
active,
revoked,
expired,
suspended
cursor
string
limit
integer
default:50
Required range: 1 <= x <= 200

Response

Credential list

items
object[]
required
pagination
object
required