Register
POST
/api/v1/oauth/register
const url = 'https://example.com/api/v1/oauth/register';const options = {method: 'POST'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/v1/oauth/registerRFC 7591 Dynamic Client Registration.
Public, unauthenticated by spec, clients (Claude, ChatGPT, Cursor, …)
POST their metadata and receive a client_id. We only issue stateless
public-PKCE client ids that encode the registered redirect_uris; there is
no client store and no client_secret. Rate-limited per IP.
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
example