---
title: "Get User API Key Details"
description: "Get details of a specific user API key."
api: "GET /api/v1/user-api-keys/{api_key_id}"
---
## Request
The secret server key for authentication.
The admin access token.
The project ID.
The unique identifier of the user API key.
## Response
The unique identifier of the API key.
A description of the API key.
The identifier of the user this API key belongs to.
ISO 8601 timestamp of when the API key expires, or `null` if it does not expire.
ISO 8601 timestamp of when the API key was manually revoked, or `null` if it has not been revoked.
ISO 8601 timestamp of when the API key was created.
```bash cURL
curl -X GET 'https://api.stack-auth.com/api/v1/user-api-keys/uak_1234567890' \
-H 'x-stack-secret-server-key: YOUR_SECRET_SERVER_KEY' \
-H 'x-stack-project-id: YOUR_PROJECT_ID'
```
```json 200 Response
{
"id": "uak_1234567890",
"description": "My API key",
"user_id": "usr_1234567890",
"expires_at": "2025-12-31T23:59:59Z",
"manually_revoked_at": null,
"created_at": "2024-01-01T00:00:00Z"
}
```