Outreach Magic API: Quick-Start Guide
Last Updated: July 26, 2024 | Version 1.0
Welcome to the official documentation for the Outreach Magic API. This guide provides everything you need to connect your tools to our powerful Outreach Magic Intelligence Layer.
Our API is designed to solve a critical problem: siloed outreach data. By integrating the API, you can check for existing contacts in real-time, enrich leads with their complete interaction history, and prevent sending duplicate messages.
Whether you're running campaigns in SmartLead or Instantly, building enrichment waterfalls in Clay, or managing workflows in n8n, these endpoints give you the unified data you need to engage leads more intelligently.
See it in action: To see a practical example of how our API can be used within Clay, check out this demo.
Authentication
All API requests must be authenticated with your personal API key. You can find your key in the "Settings" section of your Outreach Magic portal.
The API key must be included in the request headers.
Loading...
Endpoint: Lookup Lead
This endpoint is designed for precision. Use it to find a single, specific lead using their email or LinkedIn URL. It's ideal for enrichment and pre-send checks.
If multiple records for the same person exist across different profiles, this endpoint intelligently returns the single most recently active record.
- Method: POST
- URL: https://api.outreachmagic.io/v1/leads/lookup
Parameter Body
Loading...
Example Requests
Lookup using email:
Lookup using LinkedIn profile:
Response
If a lead is found, you will receive a 200 OK
response with a single JSON object. If no lead is found, you will receive a 200 OK
with an empty object {}
.
Endpoint: Lookup Lead
This endpoint is designed for discovery and analysis. Use it to find a list of leads that match a set of shared properties. All parameters are optional and are combined with AND
logic (i.e., results must match all provided filters).
- Method: POST
- URL: https://api.outreachmagic.io/v1/leads/lookup
Parameter Body
Loading...