Skip to main content
GET
/
oauth
/
authorize
OAuth 2.0 Authorization Endpoint
curl --request GET \
  --url https://api.neus.network/oauth/authorize
{
  "error": {
    "code": "<string>",
    "message": "<string>",
    "type": "<string>",
    "details": "<unknown>"
  },
  "timestamp": "2023-11-07T05:31:56Z",
  "requestId": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.neus.network/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

response_type
enum<string>
required
Available options:
code
client_id
string
required
redirect_uri
string<uri>
required
code_challenge
string
required
code_challenge_method
enum<string>
required
Available options:
S256
state
string
required
scope
string

Requested scope (space-separated). Default: neus:core neus:profile neus:secrets offline_access.

resource
string<uri>
required

Response

Redirect to redirect_uri with code and state parameters on success, or error and state on failure.