Build on Agent Marketing Co
AMC has a public HTTP API. You can use it from your own scripts, from ChatGPT custom GPTs, from Claude and Claude Code (via MCP), or from any third-party tool that speaks OpenAPI.
Get a token
Sign in at core.agentmarketingco.com and visit Settings → API Tokens. Pick a scope preset (or hand-pick scopes), name the token, and copy the amcpat_… value. You won't be able to see it again — store it somewhere safe.
Make a request
curl https://core.agentmarketingco.com/v1/me \ -H "Authorization: Bearer amcpat_…"
Browse the API
The full API reference covers every endpoint with request / response schemas and inline examples. It's auto-rendered from the OpenAPI spec at core.agentmarketingco.com/v1/openapi — that's the single source of truth your integrations should consume too (ChatGPT custom GPTs accept the URL directly).
Spend safely
Some operations cost tokens (video renders, recruiting unlocks, newsletter sends). For those, every endpoint supports two safety nets you should always use from a chatbot:
?dry_run=trueonPOST /v1/wallet/reservereturns the would-be cost without charging. Always call this first.confirmed: truein the body is required for any op costing ≥ 10 tokens. Refuses without it. Use this as your second round-trip after the user agrees to the cost.