Skip to content

Developer API

The graph8 Developer API gives you programmatic access to your contacts, companies, and lists. Authenticate with an org API key and start building integrations in minutes.

Base URL

https://be.graph8.com/api/v1

All endpoints are relative to this base URL. For example, to list contacts:

GET https://be.graph8.com/api/v1/contacts

Quick Example

Terminal window
curl "https://be.graph8.com/api/v1/contacts?limit=5" \
-H "Authorization: Bearer YOUR_API_KEY"

Resources

Authentication

Create API keys and authenticate your requests. Get started

Companies

Manage companies and their associated contacts. View reference

Reference

Pagination

Response envelope and pagination patterns. Learn more

Errors

Error codes and handling strategies. Learn more

Rate Limits

Request limits and backoff strategies. Learn more

Interactive API Reference

For a live, interactive view of all endpoints with request/response schemas, visit the OpenAPI docs:

Open Interactive API Docs →

You can test endpoints directly from the browser — authenticate with your API key and execute requests in real time.

Response Format

All responses use a standard envelope:

{
"data": { ... },
"pagination": {
"page": 1,
"limit": 50,
"total": 243,
"has_next": true
}
}

Single-resource responses include data without pagination. See Pagination for details.