Skip to main content
All Wiza API requests require authentication using a Bearer token. Include your API key in the Authorization header of every request.

Header Format

Authorization: Bearer YOUR_API_KEY

Examples

curl -X POST https://wiza.co/api/individual_reveals \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "individual_reveal": {
      "profile_url": "https://www.linkedin.com/in/example/"
    },
    "enrichment_level": "partial"
  }'

Error Responses

401 Unauthorized

Returned when the API key is missing, invalid, or expired.
{
  "status": {
    "code": 401,
    "message": "Unauthorized"
  }
}
Common causes:
  • Missing Authorization header
  • Invalid API key format (must be Bearer YOUR_API_KEY)
  • API key has been disabled
  • API key does not exist