The API surface
Three services, one contract style. Every endpoint authenticates the same way, returns the same response envelope, and fails with the same error taxonomy.
Paths in the reference are relative to these base URLs.
GET /api/linkedin-accounts/{sid} means https://app.gtm-api.com/linkedin/v4/api/linkedin-accounts/{sid}.
Start here
Quickstart
Mint an API key and make your first call in a few minutes.
Authentication
API keys, JWTs and the Team-SID header.
Knowledge base
How the platform works, for the person running outreach: accounts and
browsers, safety and pacing, finding and enriching data. With screenshots.
API reference
Every endpoint of the three services, with an interactive playground.
MCP server
Give Claude, Cursor or ChatGPT the same tools over the Model Context Protocol.
Changelog
What shipped, in the order it shipped.
How the contract behaves
- Every success body is an envelope:
success: true, one typedoperationshape (search,get,create,update,delete,metrics,action), and ametablock with atrace_idyou can quote to support. - Every failure is one
McpErrorenvelope with a code from a fixed 16-code taxonomy, so you map errors once and reuse the mapping everywhere. See Envelopes and errors. - Lists page with
page_sizeplus an opaque forwardcursor, and filters are typed per field. See Pagination and filtering. - Endpoints marked deprecated in the reference are
501stubs: the request contract is final and validated, but the capability has not shipped yet. Build against them, do not ship against them. The reason is in each operation’s description.