Skip to content
GET/user/affiliates$0.0008 / call

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.

Request

curl "https://api.twitterapis.com/user/affiliates?username=stripe" \
  -H "Authorization: Bearer $TWITTERAPIS_KEY"

Parameters

ParameterTypeRequiredDescription
usernamestringrequired

Handle of the organization account.

Example: stripe

cursorstringoptional

Pagination cursor from a previous response.

Response

FieldTypeDescription
usersarray<User>

Affiliated user accounts for this page.

has_next_pageboolean

True when more results are available; pass next_cursor to fetch them.

next_cursorstring

Opaque cursor token for the next page. Empty string on the final page.

statusstring

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.

Related endpoints