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

# Get Credentials

> Fetch a specific application's client_id + api_key. Use after Login if you've lost your key.

Requires the Bearer `access_token` from [Login](/api-reference/auth-api/login) or [Verify Email](/api-reference/auth-api/verify-email).

## Request

```bash theme={null}
curl https://auth.contra.id/v1/organizations/me/$ORG_ID/applications/$APP_ID \
  -H "Authorization: Bearer $ACCESS_TOKEN"
```

## Response · 200

```json theme={null}
{
  "uuid":      "app_…",
  "client_id": "cli_…",
  "api_key":   "ctr_42LvSyZn5ioLSyBknquXYK",
  "name":      "production"
}
```

To rotate the `api_key`, [update the application](/api-reference/auth-api/update-application).
