Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.duelduck.com/llms.txt

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

Returns the profile of the currently authenticated user.

Parameters

NameTypeHeaderRequiredDescription
AuthorizationstringAuthorizationyesAuthorization Bearer token
X-API-KeystringX-API-KeyyesProject API key

Responses

Response content type: application / json .

Code 200

Current user profile.
{
  "created_at": "string",
  "email": "string",
  "id": "string",
  "is_active": true,
  "project_id": "string",
  "role": 0,
  "updated_at": "string",
  "wallet_address": "string"
}

Code 401

Unauthorized.
{
  "message": "string",
  "status": 0
}

Code 500

Internal server error.
{
  "message": "string",
  "status": 0
}