Skip to main content
All API requests require authentication using a Bearer token in the Authorization header.

Authorization Header Format

Authorization: Bearer YOUR_API_KEY

Example Request

curl -X GET "https://api.rwa.xyz/v4/tokens" \
  -H "Authorization: Bearer YOUR_API_KEY"

Error Responses

Missing Authorization Header

Status Code: 401 Unauthorized
{
  "message": "Authorization header missing. Please include a valid API key."
}

Invalid API Key

Status Code: 401 Unauthorized
{
  "message": "Invalid API key. Please ensure that the API key is correct and try again."
}