TwitterAPIs Docs
API ReferenceUser Reads

User Affiliates

Return the affiliated accounts linked under an organization's Verified Organizations profile. Useful for mapping a company to its employees and brand accounts. Cost: $0.0008 per call.

GET
/user/affiliates

Authorization

bearerAuth
AuthorizationBearer <token>

Pass your API key as a bearer token on every request: Authorization: Bearer <API_KEY>.

In: header

Query Parameters

username*string

Handle of the organization account.

cursor?string

Pagination cursor from a previous response.

Response Body

application/json

curl -X GET "https://example.com/user/affiliates?username=stripe"
{  "users": [    {      "id": "12345",      "username": "stripedev",      "name": "Stripe Developers",      "is_blue_verified": true    }  ],  "has_next_page": false,  "next_cursor": "",  "status": "success"}