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

# Check Eligibility

> Check whether your account has been granted access to apply for the Card Issuer Program

<ParamField header="Authorization" type="string" required>
  Bearer token: `Bearer YOUR_ACCESS_TOKEN`
</ParamField>

<Note>
  Eligibility is granted by a Yativo admin. If `eligible` is `false`, contact your account manager — there is no API call to change this yourself.
</Note>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET 'https://crypto-api.yativo.com/api/v1/card-issuer/eligibility' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 Eligible, not yet enrolled theme={null}
  {
    "success": true,
    "data": {
      "eligible": true,
      "enrolled": false,
      "status": null,
      "visibility": null,
      "funding_structure": null,
      "eligible_since": "2026-03-15T09:00:00.000Z"
    }
  }
  ```

  ```json 200 Already enrolled theme={null}
  {
    "success": true,
    "data": {
      "eligible": true,
      "enrolled": true,
      "status": "approved",
      "visibility": "visible",
      "funding_structure": "master_wallet",
      "eligible_since": "2026-03-15T09:00:00.000Z"
    }
  }
  ```

  ```json 200 Not eligible theme={null}
  {
    "success": true,
    "data": {
      "eligible": false,
      "enrolled": false,
      "status": null,
      "visibility": null,
      "funding_structure": null,
      "eligible_since": null
    }
  }
  ```
</ResponseExample>
