Appearance
Quick Start
Get started with the FairFigure Ingest API in minutes.
Prerequisites
Before you begin, ensure you have:
- A FairFigure Partner API key
- HTTPS client capability (cURL, Postman, or your preferred HTTP library)
Making Your First Request
1. Set up authentication
Include your API key in the request headers:
sh
Authorization: Bearer YOUR_API_KEY2. Prepare your payload
Create a JSON payload with the required fields:
json
{
"email": "[email protected]",
"business_name": "Acme Corp",
"ein": "123456789"
}3. Send the request
Make a POST request to the ingest endpoint:
sh
curl -X POST https://fairfigure.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"
}'4. Handle the response
A successful submission returns 202 Accepted with a unique request ID:
json
{
"message": "Request accepted for processing.",
"data": {
"request_id": "req_01890a5d-ac96-774b-bcce-b302099a8057"
}
}The application is validated and processed in the background; the applicant receives login instructions via email once processing completes. Store the request_id for tracking and support inquiries.
What's Next?
Now that you've made your first request, explore the detailed guides:
- Ingest Endpoint Details - Learn about all request fields and response formats
- Error Handling - Handle validation and server errors gracefully

