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

# Browse presentation presets

> Find the presentation preset that matches what you want to verify.

## List presentation presets

Every preset published on the platform is available to you, with no setup and no permissions to request. Listing returns the current catalogue; pick the one that matches what you want to verify.

```bash theme={null}
curl -X GET "https://test.didxtech.com/me-creds/api/v1/presets/presentations" \
  -H "Authorization: Bearer <access_token>"
```

A trimmed example entry:

```json theme={null}
{
  "id": "didx:basic-identity-request",
  "author": "didx",
  "code": "basic-identity-request",
  "templateName": "Basic Identity Request",
  "templateDescription": "Standard request for basic identity information",
  "templateCredentials": [
    {
      "format": "sd-jwt-vc",
      "name": "Basic Identity Credential",
      "type": "https://didx.co.za/vct/didx/basic-identity",
      "trustedIssuers": [
        {
          "kind": "did",
          "did": "did:web:sarb.gov.za",
          "name": "South African Reserve Bank"
        },
        {
          "kind": "x509",
          "certificate": "-----BEGIN CERTIFICATE-----\nMIIDdzCCAl+gAwIBAgIUJ8vK...truncated...PFvKkQ==\n-----END CERTIFICATE-----",
          "name": "Department of Home Affairs"
        }
      ],
      "attributes": {
        "firstName": { "type": "string" },
        "lastName": { "type": "string" }
      }
    }
  ],
  "verifierConfig": { "signer": "did:web" }
}
```

At a glance: `id` is what you pass as `presetId`, `templateName` and `templateDescription` are what to scan when picking, and `templateCredentials` carries the request itself (which credentials the user will be asked to share, which fields come back, and which issuers count).

## Inspect a single preset

When you've found a candidate, fetch it directly:

```bash theme={null}
curl -X GET "https://test.didxtech.com/me-creds/api/v1/presets/presentations/didx:basic-identity-request" \
  -H "Authorization: Bearer <access_token>"
```

## What if nothing fits?

* Publish your own: [Create a presentation preset](/products/didx-me/guides/verifiers/create-presentation-preset).
* Or define a one-off: [Custom presentation template](/products/didx-me/guides/verifiers/create-presentation-template).
