Build with the Scrupp API
Collection of endpoints to collect and enrich data from LinkedIn and Apollo.
The Scrupp API lets you programmatically export leads from LinkedIn and Sales Navigator, find verified email addresses for any contact, enrich company and people records with firmographic and technographic data, and automate your entire pipeline with webhooks for Make, Zapier, n8n, and Clay. Every endpoint follows the same async pattern: send a request, receive a process_id, then fetch structured results when the task completes. Whether you are building a custom CRM integration or feeding data into your outbound sequences, the API handles the heavy lifting so you can focus on closing deals.
Every API request costs 1 credit per record. Credits are deducted when the task is created.
- If the task returns fewer records than requested, unused credits are refunded automatically.
- Check your balance at app.scrupp.com/billing.
Common pattern
Start job → get data by process id.
POST /some/endpoint?api_key=YOUR_API_KEY
→ { "process_id": 123 }
GET /task/123/data?api_key=YOUR_API_KEY
→ { "data": [...] }