Skip to main content
GET
/
platforms
/
{platform}
/
profiles
/
{profile_id}
Get single profile
curl --request GET \
  --url https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id} \
  --header 'x-api-key: <api-key>'
{
  "payload": {
    "platform_id": "twitch",
    "id": "484563826",
    "name": "streamer123",
    "display_name": "Streamer 123",
    "url": "https://twitch.tv/streamer123",
    "description": "Twitch streamer",
    "profile_image": "https://static-cdn.jtvnw.net/jtv_user_pictures/...",
    "banner_image": "https://static-cdn.jtvnw.net/jtv_user_pictures/...",
    "language": "en",
    "statistics": {
      "followers": 120000
    },
    "updated_at": "2024-07-04T12:00:00.000Z",
    "last_active_at": "2024-07-04T10:00:00.000Z"
  },
  "meta": {
    "received_at": "2025-01-27T12:00:00.000Z"
  }
}

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"

profile_id
string
required

Platform-specific creator ID

Example:

"484563826"

Response

Profile found

payload
object
meta
object