> For the complete documentation index, see [llms.txt](https://devdocs.olisystems.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://devdocs.olisystems.com/authentication/api-keys/list-all-keys.md).

# List All Keys

You can retrieve a list of all API keys (both active and deleted) linked to your account by making a `GET` request to the API key list endpoint.

<mark style="color:green;">`GET`</mark> `https://api.olisystems.com/user/api-key`

**Headers**

| Name                                            | Value            |
| ----------------------------------------------- | ---------------- |
| Authorization<mark style="color:red;">\*</mark> | `Bearer <token>` |

**Example Response**

{% tabs %}
{% tab title="200" %}

```json
  {
  "code": 200,
  "data": [
  {
      "apiKey": "**********aBVUu1tg-T",
      "apiKeyId": "d1e13388-c3c8-4bd4-8361-4b698829cde6",
      "dateCreated": "Thu, 21 Nov 2024 22:44:16 GMT",
      "expiry": "Thu, 21 Nov 2024 23:43:43 GMT",
      "name": "Test Key",
      "status": "ACTIVE"
    }
  ],
  "message": "User's API_KEY information",
  "status": "success"
}

```

{% endtab %}
{% endtabs %}
