API Credentials
|
Company Funding API Playground
Queue a funding lookup and poll for results using live API calls. Retrieve verified funding rounds with dates, investors, amounts, and valuations. All requests require authentication and return structured JSON.
Prefer no-code? Try the no-code version - same results, simpler interface.
Try the API
Request Parameters
Quick Examples
Click any example to populate the form:
Response
Loading request builder...
Or Check Existing Request
Paste a request ID from a previous request to check its status:
Example Requests
Your API credentials are pre-filled. Click "Copy" to copy the command to your clipboard.
cURL Example
curl -X POST https://api.nyne.ai/company/funding \
-H "Content-Type: application/json" \
-H "X-API-Key: your_api_key_here" \
-H "X-API-Secret: your_api_secret_here" \
-d '{
"company_name": "Stripe"
}'
Webhook Payload:
POST https://example.com/webhooks/funding
Content-Type: application/json
{
"request_id": "cofund_64f2d8e4_1700000123",
"status": "completed",
"result": {
"company_domain": "stripe.com",
"funding_rounds": [
{
"series_type": "Series I",
"funded_by": [
{
"name": "Thrive Capital",
"domain": "thrivecap.com"
}
],
"funding_date": {
"year": 2024,
"month": 3,
"day": 15
},
"amount": 6940000000,
"currency": "USD",
"valuation": 65000000000
},
{
"series_type": "Pre-Seed",
"funded_by": [],
"amount": 1000000,
"amount_approximate": true,
"currency": "USD"
}
],
"acquired": {
"acquired_on": {
"year": 2024,
"month": 10,
"day": 15
},
"acquired_by": "Microsoft",
"acquired_by_domain": "microsoft.com",
"purchase_price": 5000000000,
"currency": "USD",
"acquisition_type": "acquisition"
}
},
"created_at": "2025-11-10T22:20:03Z",
"completed_at": "2025-11-10T22:20:17Z"
}
Response Format
Successful responses follow this structure:
{
"success": true,
"data": {
"request_id": "cofund_64f2d8e4_1700000123",
"status": "completed",
"result": {
"company_domain": "stripe.com",
"funding_rounds": [
{
"series_type": "Series I",
"funded_by": [
{
"name": "Thrive Capital",
"domain": "thrivecap.com"
}
],
"funding_date": {
"year": 2024,
"month": 3,
"day": 15
},
"amount": 6940000000,
"currency": "USD"
},
{
"series_type": "Pre-Seed",
"funded_by": [],
"amount": 1000000,
"amount_approximate": true,
"currency": "USD"
}
],
"acquired": {
"acquired_on": {
"year": 2024,
"month": 10,
"day": 15
},
"acquired_by": "Microsoft",
"acquired_by_domain": "microsoft.com",
"purchase_price": 5000000000,
"currency": "USD",
"acquisition_type": "acquisition"
}
},
"created_on": "2025-11-10T22:20:03Z",
"completed_on": "2025-11-10T22:20:17Z"
},
"timestamp": "2025-11-10T22:20:17Z"
}
Need Help?
Our support team is here to help you integrate and use our APIs effectively.
Email: support@nyne.ai
Sales: sales@nyne.ai
Try no-code tool for a simpler, no-code interface.