Skip to content

Authentication

All requests to the FairFigure Ingest API must be authenticated using your partner API key.

API Key Authentication

Include your API key in the Authorization header of every request:

sh
Authorization: Bearer YOUR_API_KEY

Example Request

sh
curl -X POST https://fairfigue.com/api/v1/capital/ingest \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "[email protected]",
    "business_name": "Acme Corp",
    "ein": "123456789"
  }'

Obtaining an API Key

INFO

To obtain a partner API key, contact the FairFigure partner team at [email protected]

Security Best Practices

PracticeDescription
Keep Keys SecretNever expose your API key in client-side code or public repositories
Use HTTPSAlways make requests over HTTPS to ensure your API key is encrypted in transit
Rotate KeysPeriodically rotate your API keys and update them in your systems