Skip to main content
Public API under construction. Apollo Space exposes a complete HTTP surface internally (consumed by the app itself), but the curation of what becomes a stable public endpoint is still in progress. This section will be filled in endpoint by endpoint as each one is ratified for external integration. If you need a specific endpoint before it appears here, reach out to support@apollospace.ai.

General conventions

Authentication

All HTTP calls carry a Bearer token in the header:
The id_token is the Cognito token issued after login. It has a short expiration window (hours) — use the refresh token to renew it.

Organization identity

Since the same user can belong to multiple organizations, every call must specify which org is the context for the operation:
Without this header (or with a UUID that does not belong to the user), the call is rejected with 403.

Versioning

Public endpoints live under /v1/.... Breaking changes will move to /v2/... in the future — /v1 is maintained in parallel for a minimum window of 6 months after announcement.

Dates and timestamps

  • Timestamps: ISO 8601 with timezone — e.g. "2026-06-26T17:45:13Z"
  • Dates (no time): YYYY-MM-DD — e.g. "2026-06-26"
  • Timezone: always UTC in responses. In queries, you may send with a timezone (Apollo Space converts to UTC internally).

Identifiers

  • Resource IDs (lead, conversation, pipeline, etc.) are version 4 UUIDs
  • No auto-incremental IDs are exposed publicly — always UUID

Pagination

Endpoints that return lists use cursor-based pagination:
  • For the next page: ?cursor=<next_cursor>
  • next_cursor: null means end of list
  • Cursors are not stable URLs — do not persist them; use only for sequential navigation

Error handling

All errors return JSON with a consistent shape:
  • code: stable identifier for the error family (use in your client)
  • message: human-readable description, not stable across versions
  • request_id: support ID — include it in your support request so the team can locate the log

HTTP codes

Rate limits

Endpoints have limits per organization + operation type. When you hit the limit:
  • Response 429 Too Many Requests
  • Header Retry-After: <seconds> indicates when to retry
  • For sustained load above the default limit, contact support — we can raise the ceiling

Idempotency

Billable POST operations support an optional idempotency header:
If the call fails and you retry with the same key, Apollo Space does not duplicate the effect (no double billing, no double email sends, etc.). Recommended for any serious integration.

Surfaces coming to this section

Endpoints planned for publication (as they stabilize):
  • Leads: CRUD + filters + bulk import
  • Pipelines: read + create + stage reordering
  • Agents: programmatic invocation + reading traces from previous runs
  • Stars: query balance, history, configure caps
  • Webhooks: subscribe to events (lead created, new activity, reply detected)
Each will get its own page with schema + cURL example.

Next steps

Platform concepts

Before integrating, understand the org + agent model.

Support

The endpoint you need isn’t here yet? Send us a message at support@apollospace.ai with your use case.