> ## Documentation Index
> Fetch the complete documentation index at: https://docs.baselayer.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Fetch the credential status list token

> The OAuth Token Status List covering every credential this issuer has minted. Each credential's `status` claim names this URI and a bit index; bit set means revoked. Returned as a signed `statuslist+jwt` verifiable against the issuer's published JWKS. Unauthenticated; cacheable for at most the token's `ttl` claim, which this response's max-age mirrors.



## OpenAPI

````yaml /api-reference/openapi.json get /statuslists/1
openapi: 3.1.0
info:
  title: baselayer-api-service
  version: 0.1.0
servers:
  - url: https://api.baselayer.com/
security: []
paths:
  /statuslists/1:
    get:
      tags:
        - Registry
      summary: Fetch the credential status list token
      description: >-
        The OAuth Token Status List covering every credential this issuer has
        minted. Each credential's `status` claim names this URI and a bit index;
        bit set means revoked. Returned as a signed `statuslist+jwt` verifiable
        against the issuer's published JWKS. Unauthenticated; cacheable for at
        most the token's `ttl` claim, which this response's max-age mirrors.
      operationId: get_status_list
      responses:
        '200':
          description: The signed status list token.
          content:
            application/statuslist+jwt: {}

````