π AdCP 3.0 is now GA β see what's new
curl --request GET \
--url https://agenticadvertising.org/api/me/member-profile \
--header 'Authorization: Bearer <token>'{
"profile": {
"organization_id": "org_01HXZAB123",
"organization_name": "Acme Media",
"company_type": "adtech",
"corporate_domain": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"agents": [
{
"url": "https://agent.example.com/mcp",
"visibility": "private",
"name": "<string>",
"type": "brand",
"health_check_url": "<string>"
}
],
"revenue_tier": "under_1m",
"primary_brand_domain": "<string>",
"membership_tier": "individual_professional"
}
}Return the organization member profile for the callerβs primary org (or ?org= if supplied). This is the canonical βdo I have a member profile yet?β check β clients hitting 404 from GET /api/me/agents should call this to confirm before prompting onboarding.
curl --request GET \
--url https://agenticadvertising.org/api/me/member-profile \
--header 'Authorization: Bearer <token>'{
"profile": {
"organization_id": "org_01HXZAB123",
"organization_name": "Acme Media",
"company_type": "adtech",
"corporate_domain": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"agents": [
{
"url": "https://agent.example.com/mcp",
"visibility": "private",
"name": "<string>",
"type": "brand",
"health_check_url": "<string>"
}
],
"revenue_tier": "under_1m",
"primary_brand_domain": "<string>",
"membership_tier": "individual_professional"
}
}Documentation Index
Fetch the complete documentation index at: https://docs.adcontextprotocol.org/llms.txt
Use this file to discover all available pages before exploring further.
Bearer token in the Authorization header. Two token types are accepted:
sk_...) issued via the dashboard. Org-scoped, long-lived, for server-to-server use./.well-known/oauth-authorization-server and the protected-resource metadata at /.well-known/oauth-protected-resource/api.WorkOS organization id to act on. Defaults to the caller's primary organization.
"org_01HXZAB123"
Member profile.
The member profile shape returned from POST /api/me/member-profile and GET /api/me/member-profile.
Show child attributes
Was this page helpful?