Skip to main content

GET /v2/keys

Lists all MPC keys belonging to the authenticated user, including backup status.

Used in flow: Get list of generated keys and their backup status

Authentication: JWT (Access Token)

Request

Authorization: Bearer <access_token>

Response

200 OK
{
"keys": [
{
"key_id": "key_abc123",
"created_at": "2025-01-15T10:30:00Z",
"backup": {
"created_at": "2025-01-15T10:30:00Z"
}
},
{
"key_id": "key_def456",
"created_at": "2025-01-10T08:00:00Z"
}
]
}

The backup field is omitted if no backup has been saved for that key.