Attio

Secure, streamlined access to the Attio API for your team.

Overview

The Stacksync Attio API Proxy provides centralized access to Attio APIs through a single HTTPS endpoint. You authenticate with your Stacksync service token. Stacksync manages the underlying Attio OAuth connection.

Use it for on‑demand operational tasks and low‑volume reads/writes. For continuous, high‑volume sync, use Stacksync Syncs instead.

Operations:

Pass Through

Use the Attio Pass Through operation when you need flexible, low‑level access to the Attio API beyond what the higher‑level proxy endpoints provide. It is a good fit for advanced or less common use cases, such as working with newly released endpoints, niche resources, or operations that are not yet modeled as first‑class methods in Stacksync.

Because authentication and routing are handled by Stacksync, your services, scripts, and internal tools can call Attio securely using a single integration pattern, without embedding Attio credentials or managing OAuth flows in each system.

curl -X [GET | POST | PUT | PATCH | DELETE] 
https://eu.api-proxy.stacksync.com/v1/proxy/INSERT_REQUEST_URL_HERE \
-H "Authorization: Bearer your_api_proxy_service_token" \
-d 'Optional'

Example request:

Get Attio Objects

curl -X GET https://eu.api-proxy.stacksync.com/v1/proxy/https://api.attio.com/v2/objects \
        -H "Authorization: Bearer your_api_proxy_service_token" \

Example response:

Last updated