OpenPhn docs
Referenceauth

List your API keys (without raw values)

{/* This file was generated by Fumadocs. Do not edit this file directly. Any changes should be made by running the generation command again. */}

Returns a redacted view of every key on the account — only the prefix and metadata, never the raw key. Use this to audit which keys exist before revoking any.

GET
/auth/api-keys

Response Body

application/json

curl -X GET "https://loading/auth/api-keys"
{
  "keys": [
    {
      "id": "string",
      "prefix": "string",
      "name": "string",
      "is_active": true,
      "created_at": "string",
      "scopes": [
        "string"
      ],
      "number_ids": [
        "string"
      ],
      "expires_at": "string",
      "last_used_at": "string",
      "last_used_ip": "string",
      "mode": "live"
    }
  ]
}