> For the complete documentation index, see [llms.txt](https://docs.meeco.me/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.meeco.me/openapi-docs/svx-api/status-lists.md).

# Status Lists

## Retrieve status list credential JWT

> Returns a status list credential in JWT format. Typically used for revocation checking of issued credentials. The status list credential contains a bitstring representing the revocation status of credentials linked to the status list. The specific implementation of the status list credential may vary based on the supported standards and configurations of the issuer.\
> \
> \## Supported Standards\
> \
> \- \[W3C VC Bitstring Status List v1.0]\(<https://www.w3.org/TR/vc-bitstring-status-list/>)<br>

```json
{"openapi":"3.1.0","info":{"title":"SVX Wallet API","version":"4.0.1"},"servers":[{"url":"https://zyfla-wallet-sandbox.meeco.cloud","description":"SVX Wallet deployment (relative)"}],"security":[{},{"bearerAuth":[]},{"mutualTLS":[]}],"components":{"securitySchemes":{"bearerAuth":{"bearerFormat":"JWT","scheme":"bearer","type":"http"},"mutualTLS":{"type":"mutualTLS"}},"schemas":{"InvalidPathParamError":{"properties":{"error":{"description":"Unique error identifier","enum":["invalid_path_param"],"type":"string"},"extra_info":{"description":"Object that may contain more information about the error","type":"object"},"message":{"description":"User friendly error message","type":"string"}},"required":["error","message","extra_info"],"type":"object"},"RevocationListNotFoundError":{"properties":{"error":{"description":"Unique error identifier","enum":["revocation_list_not_found"],"type":"string"},"extra_info":{"description":"Object that may contain more information about the error","type":"object"},"message":{"description":"User friendly error message","type":"string"}},"required":["error","message","extra_info"],"type":"object"}}},"paths":{"/issuer/status_list/{id}":{"get":{"summary":"Retrieve status list credential JWT","description":"Returns a status list credential in JWT format. Typically used for revocation checking of issued credentials. The status list credential contains a bitstring representing the revocation status of credentials linked to the status list. The specific implementation of the status list credential may vary based on the supported standards and configurations of the issuer.\n\n## Supported Standards\n\n- [W3C VC Bitstring Status List v1.0](https://www.w3.org/TR/vc-bitstring-status-list/)\n","operationId":"StatusListController_findOneJWT","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"integer","minimum":1}}],"responses":{"200":{"content":{"application/jwt":{"schema":{"type":"string"}}},"description":"Status list credential JWT"},"400":{"content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/InvalidPathParamError"},{"$ref":"#/components/schemas/RevocationListNotFoundError"}]}}},"description":"Invalid path param or list not found"}},"tags":["Status Lists"]}}}}
```
