v1
latestOpenAPI 3.0.32026-07-24707482.9 KBAPI Keys
Mint a new API key for the authenticated user
Mints an Overledger-issued API key. The response carries the raw key ONCE in the apiKey field — it is unrecoverable afterwards. This route accepts header-token auth only (a URL/header API key can never mint, list, or revoke keys).
post/users/me/api-keys
Request body
Example request
{
"label": "CI key",
"scopes": [
"rpc"
]
}Response
Key minted — apiKey shown once.
Example response
{
"apiKey": "fk_abc123def456.s3cr3tValue...",
"scopes": [
"rpc"
]
}