Skip to main content
POST
/
oauth
/
register
cURL
curl --request POST \
  --url https://api.useanima.sh/v1/oauth/register \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "redirect_uris": [
    "<string>"
  ],
  "client_name": "Unnamed MCP Client",
  "client_uri": "<string>",
  "logo_uri": "<string>",
  "policy_uri": "<string>",
  "tos_uri": "<string>",
  "grant_types": [
    "<string>"
  ],
  "response_types": [
    "<string>"
  ],
  "token_endpoint_auth_method": "<string>",
  "scope": "<string>"
}
'
{
  "client_id": "<string>",
  "client_id_issued_at": 123,
  "client_name": "<string>",
  "redirect_uris": [
    "<string>"
  ],
  "grant_types": [
    "<string>"
  ],
  "response_types": [
    "<string>"
  ],
  "token_endpoint_auth_method": "<unknown>",
  "scope": "<string>"
}

Authorizations

Authorization
string
header
required

JWT Bearer token obtained from authentication. Pass as: Authorization: Bearer

Body

application/json

RFC 7591 Dynamic Client Registration request

redirect_uris
string<uri>[]
required
Required array length: 1 - 20 elements
client_name
string
default:Unnamed MCP Client
Required string length: 1 - 120
client_uri
string<uri>
logo_uri
string<uri>
policy_uri
string<uri>
tos_uri
string<uri>
grant_types
string[]
response_types
string[]
token_endpoint_auth_method
string
scope
string

Response

OK

RFC 7591 §3.2.1 dynamic registration response

client_id
string
required
client_id_issued_at
integer
required

Unix seconds

client_name
string
required
redirect_uris
string<uri>[]
required
grant_types
string[]
required
response_types
string[]
required
token_endpoint_auth_method
any
required
scope
string