GET
/user/affiliates$0.0008 / callUser Affiliates
Return the affiliated accounts linked under an organization's Verified Organizations profile. Useful for mapping a company to its employees and brand accounts.
Request
curl "https://api.twitterapis.com/user/affiliates?username=stripe" \
-H "Authorization: Bearer $TWITTERAPIS_KEY"Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
username | string | required | Handle of the organization account. Example: |
cursor | string | optional | Pagination cursor from a previous response. |
Response
| Field | Type | Description |
|---|---|---|
users | array<User> | Affiliated user accounts for this page. |
has_next_page | boolean | True when more results are available; pass next_cursor to fetch them. |
next_cursor | string | Opaque cursor token for the next page. Empty string on the final page. |
status | string | Request status, "success" on a normal response. |
Example response
{
"users": [
{
"id": "12345",
"username": "stripedev",
"name": "Stripe Developers",
"is_blue_verified": true
}
],
"has_next_page": false,
"next_cursor": "",
"status": "success"
}Pricing for this endpoint
user/affiliates costs $0.0008 per call and returns ~20 tweets, so roughly $0.04 per 1,000 tweets. No subscriptions or minimum spend.