Skip to main content
POST
/
platforms
/
{platform}
/
profiles
Get multiple profiles
curl --request POST \
  --url https://external-api.streamforge.com/platforms/{platform}/profiles \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "profile_ids": [
    "484563826",
    "775305965",
    "116216805"
  ]
}
'
{
  "payload": [
    {
      "platform_id": "twitch",
      "id": "<string>",
      "name": "<string>",
      "display_name": "<string>",
      "url": "<string>",
      "description": "<string>",
      "profile_image": "<string>",
      "banner_image": "<string>",
      "language": "<string>",
      "statistics": {
        "followers": 123,
        "views": 123,
        "views_estimated": 123
      },
      "account_type": "<string>",
      "is_mature": true,
      "updated_at": "2023-11-07T05:31:56Z",
      "last_active_at": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "source": "<string>",
    "received_at": "2023-11-07T05:31:56Z",
    "request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "missing_ids": [
      "<string>"
    ]
  }
}

Authorizations

x-api-key
string
header
required

Your API key. Include it in the x-api-key header for all requests.

Path Parameters

platform
enum<string>
required

Platform identifier

Available options:
twitch,
youtube,
tiktok
Example:

"twitch"

Body

application/json
profile_ids
string[]
required
Required array length: 1 - 100 elements
Example:
["484563826", "775305965", "116216805"]

Response

Profiles found

payload
object[]
meta
object