REST + GraphQL API. Search contacts, traverse relationship graphs, enrich records, and build integrations.
Each API call = 1 lookup. A contact search, enrichment, or relationship query each cost one lookup. Batch operations count as 1 lookup per record.
| Organization size | Est. lookups/mo | Best plan | Cost |
|---|---|---|---|
| Solo developer / side project | 500 - 2,000 | Developer | $49/mo |
| Startup (5-20 employees) | 5,000 - 15,000 | Developer | $49 - $349 |
| Growth company (20-100) | 15,000 - 50,000 | Scale | $199/mo |
| Mid-market (100-500) | 50,000 - 200,000 | Scale | $199 - $3,199 |
| Enterprise (500+) | 200,000+ | Enterprise | Custom |
Overage is billed at the end of each billing cycle. No service interruption — you never hit a wall.
Need the app instead? See consumer plans →
Full endpoint documentation with request/response examples in Python, Node, and cURL.
View reference →Try it
# Search your network
curl https://api.jetwork.ai/v1/contacts/search \
-H "Authorization: Bearer jw_sk_..." \
-d '{"query": "Who do I know at Sequoia?"}'
{
"results": [
{
"name": "Sarah Chen",
"company": "Sequoia Capital",
"role": "Partner",
"relationship_strength": 98,
"last_interaction": "2026-03-15",
"mutual_connections": 14
}
],
"total": 1,
"query_time_ms": 847
}
Reference
Search across your entire network with natural language or structured queries.
Full 360 view of any contact: history, strength, mutual connections, timeline.
Enrich any contact with public data, interaction history, and AI-generated insights.
Find the shortest, warmest path between any two people in your network.
Bulk operations: search, enrich, or export up to 1,000 contacts per request.
Real-time notifications for new contacts, relationship changes, and meeting alerts.
Details
All requests require a Bearer token in the Authorization header.
Rate limits are enforced per API key. Exceeding the limit returns a 429 status with a Retry-After header.
Get your API key and make your first call in under 5 minutes.
Free forever up to 500 contacts.