Skip to main content
POST
Unauthenticated (no API key). Rate-limited to 20 registrations per hour per IP address.
Prefer a Client ID Metadata Document if the client can host a static JSON file. See Building an OAuth client for choosing a registration method and client type.

Body Parameters

string
required
A human-readable name for the client. Maximum 200 characters.
string[]
required
1 to 10 URIs, each up to 2048 characters. See Allowed redirect URIs.
string[]
default:"[\"authorization_code\", \"refresh_token\"]"
Must include authorization_code. refresh_token is also supported.
string[]
default:"[\"code\"]"
Only code is supported. Validated if present but not stored; the response always echoes back ["code"].
string
Space-delimited list of scopes, e.g. "emails:send". Must be a subset of the supported scopes. If omitted, the client is registered with every supported scope.
string
default:"none"
How the client authenticates at the token and revocation endpoints. none registers a public client (PKCE only). client_secret_basic and client_secret_post register a confidential client and issue a client_secret in the response. See Confidential clients. PKCE is required on every authorization code exchange regardless of method.
string
A URL for the client’s homepage. Echoed back, not otherwise used.
string
A URL for the client’s logo. Shown on the consent screen.

Confidential clients

Registering with token_endpoint_auth_method set to client_secret_basic or client_secret_post returns two extra fields, documented in Response Fields below.

Allowed redirect URIs

  • https:// URIs are unrestricted.
  • http:// is only allowed for loopback addresses (127.0.0.1, localhost, [::1]).
  • Private-use URI schemes (e.g. cursor://, vscode://) are allowed.
  • file, ftp, data, javascript, blob, about, and vbscript schemes are rejected. No URI may include a fragment.

Response Fields

The response echoes back the registered client metadata along with the issued client_id. Registering a confidential client returns two extra fields:
string
The generated client secret. Returned only once, in this response. Resend stores a hash and can’t show it again, so persist it securely at registration time. If it’s lost, register a new client.
number
Unix time at which the secret expires. Always 0: the secret does not expire.

Errors

Errors use the standard OAuth shape ({"error": "...", "error_description": "..."}) rather than Resend’s usual error format.