Appearance
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_KEYExample 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
| Practice | Description |
|---|---|
| Keep Keys Secret | Never expose your API key in client-side code or public repositories |
| Use HTTPS | Always make requests over HTTPS to ensure your API key is encrypted in transit |
| Rotate Keys | Periodically rotate your API keys and update them in your systems |

