Skip to main content
POST
/
api
/
crm
/
newlead
curl -X POST "https://api.finscreener.in/api/crm/newlead" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "entity_type": "fullcompany",
    "identifier": "U72200MH2004PTC148441"
  }'
{
  "success": true,
  "entity_type": "fullcompany",
  "identifier": "U72200MH2004PTC148441",
  "lead": {
    "Last_Name": "TCS LIMITED",
    "Company": "TCS LIMITED",
    "Email": "[email protected]",
    "Phone": null,
    "City": "Mumbai",
    "State": "Maharashtra",
    "Lead_Source": "Finscreener",
    "CIN": "U72200MH2004PTC148441"
  },
  "full_data": {
    "company": { ... },
    "directors": [
      {
        "DIN": "00126778",
        "name": "RAJESH GOPINATHAN",
        "designation": "Managing Director",
        "dateOfAppointment": "2017-02-21"
      }
    ],
    "gst": []
  }
}
Get any company, director, or GST registration formatted as a Zoho CRM lead.
Requires an active subscription with access to recently registered data:
  • company / fullcompany → Requires Recent_COMP feature
  • director → Requires Recent_DIR feature
  • gst → Requires Recent_GST feature

Headers

Authorization
string
required
Bearer token: Bearer <access_token>

Request Body

entity_type
string
required
Entity type: company, fullcompany, director, or gst
identifier
string
required
Entity identifier (CIN, DIN, or GSTIN)
curl -X POST "https://api.finscreener.in/api/crm/newlead" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "entity_type": "fullcompany",
    "identifier": "U72200MH2004PTC148441"
  }'
{
  "success": true,
  "entity_type": "fullcompany",
  "identifier": "U72200MH2004PTC148441",
  "lead": {
    "Last_Name": "TCS LIMITED",
    "Company": "TCS LIMITED",
    "Email": "[email protected]",
    "Phone": null,
    "City": "Mumbai",
    "State": "Maharashtra",
    "Lead_Source": "Finscreener",
    "CIN": "U72200MH2004PTC148441"
  },
  "full_data": {
    "company": { ... },
    "directors": [
      {
        "DIN": "00126778",
        "name": "RAJESH GOPINATHAN",
        "designation": "Managing Director",
        "dateOfAppointment": "2017-02-21"
      }
    ],
    "gst": []
  }
}