FullHunt uses API key authentication. Include your key in the X-API-KEY header on every authenticated API request.
Do not expose FullHunt API keys in browser code, mobile apps, public repositories, analytics tools, or client-side logs. Route client-facing requests through your backend.

API Key Setup

1

Create or sign in to your account

Use your FullHunt account to access API credentials and plan information.
2

Copy your API key

Open profile settings and copy the active API key.
3

Send the key with each request

Add the key to the X-API-KEY request header.
Header

Verify Your Key

Use /auth/status before building deeper integrations. The response confirms that the key is valid and returns the account plan and credit context.
Replace xxxx-xxxx-xxxx-xxxxxx with your actual API key before sending requests.

Successful Response

Authentication status

Response Fields

User Object

User Credits Object

Common Failures

Key Handling Checklist

  • Load API keys from server-side environment variables or a secrets manager.
  • Rotate keys after accidental exposure or team access changes.
  • Avoid writing API keys to request logs, crash reports, traces, and analytics events.
  • Use separate keys or accounts for development, staging, and production when your workflow requires isolation.