curl -X GET "https://api.finscreener.in/api/crm/orders/order_123/leads" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
"order_id": "order_123",
"order_name": "IT Companies Data",
"payment_status": "paid",
"status": "completed",
"leads": [
{
"type": "company",
"identifier": "U72200MH2004PTC148441",
"name": "TCS LIMITED",
"lead": {
"Last_Name": "TCS LIMITED",
"Company": "TCS LIMITED",
"Email": "investor.relations@tcs.com",
"Phone": "9876543210",
"City": "Mumbai",
"State": "Maharashtra",
"Lead_Source": "Finscreener",
"CIN": "U72200MH2004PTC148441"
},
"full_data": {
"company": { ... },
"directors": [ ... ],
"gst": [ ... ]
}
}
],
"total": 100
}
CRM Integration
Get Order Leads
Get Zoho-ready leads from an order
GET
/
api
/
crm
/
orders
/
{order_id}
/
leads
curl -X GET "https://api.finscreener.in/api/crm/orders/order_123/leads" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
"order_id": "order_123",
"order_name": "IT Companies Data",
"payment_status": "paid",
"status": "completed",
"leads": [
{
"type": "company",
"identifier": "U72200MH2004PTC148441",
"name": "TCS LIMITED",
"lead": {
"Last_Name": "TCS LIMITED",
"Company": "TCS LIMITED",
"Email": "investor.relations@tcs.com",
"Phone": "9876543210",
"City": "Mumbai",
"State": "Maharashtra",
"Lead_Source": "Finscreener",
"CIN": "U72200MH2004PTC148441"
},
"full_data": {
"company": { ... },
"directors": [ ... ],
"gst": [ ... ]
}
}
],
"total": 100
}
Retrieve leads from an order in Zoho CRM-ready format.
Path Parameters
Order ID
Headers
Bearer token:
Bearer <access_token>Response
Returns leads pre-formatted for Zoho CRM with standard field mapping.Order ID
curl -X GET "https://api.finscreener.in/api/crm/orders/order_123/leads" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
"order_id": "order_123",
"order_name": "IT Companies Data",
"payment_status": "paid",
"status": "completed",
"leads": [
{
"type": "company",
"identifier": "U72200MH2004PTC148441",
"name": "TCS LIMITED",
"lead": {
"Last_Name": "TCS LIMITED",
"Company": "TCS LIMITED",
"Email": "investor.relations@tcs.com",
"Phone": "9876543210",
"City": "Mumbai",
"State": "Maharashtra",
"Lead_Source": "Finscreener",
"CIN": "U72200MH2004PTC148441"
},
"full_data": {
"company": { ... },
"directors": [ ... ],
"gst": [ ... ]
}
}
],
"total": 100
}
⌘I