Documentation Index
Fetch the complete documentation index at: https://docs.topyappers.com/llms.txt
Use this file to discover all available pages before exploring further.
Agent Outreach API
The Agent Outreach API exposes the email outreach data created by your TopYappers agent. Use it to resolve an inbox email address back to the creator, project, Gmail thread, and previous messages so your team or AI agent can write a more customized reply.Base URL
https://api.topyappers.com
Authentication
All requests require a TopYappers API key in thex-ty-api-key header.
Pricing
These endpoints are free. They validate your API key and apply rate limits, but they do not consume credits because they return your own outreach data.Rate limits
- 60 requests per minute per API key.
- HTTP
429responses includeRetry-After.
Endpoints
| Endpoint | Description |
|---|---|
GET /api/v1/agent/projects | List your active agent outreach projects. |
GET /api/v1/agent/contacted-creators | List creators contacted by outbound agent email. |
GET /api/v1/agent/messages | List email messages, filterable by project, creator email, creator ID, thread, status, and direction. |
Common workflow
- Call
GET /api/v1/agent/messages?creatorEmail=creator@example.com&direction=allwith the email address from your inbox. - Use the returned
creator_id,creator_name,project_id,thread_id, and message history to understand context. - Optionally call
GET /api/v1/agent/projectsto map theproject_idto the campaign details. - Use
GET /api/v2/creators/search?email=creator@example.comorPOST /api/v2/creators/getwhen you also need the creator’s public profile data.
Response envelope
All Agent Outreach API responses use the standard public API envelope:page, per_page, next_page, total_pages, and total inside response.