> ## Documentation Index
> Fetch the complete documentation index at: https://docs.1up.vision/llms.txt
> Use this file to discover all available pages before exploring further.

# Get streamer profile

> Returns profile information for a specific streamer.



## OpenAPI

````yaml https://statistics.1up.vision/openapi.json get /v1/streamer/{name}
openapi: 3.1.0
info:
  title: Vision Stats API
  version: 1.0.0
  description: >-
    REST API for accessing Twitch streamer analytics, stream summaries, partner
    data, and events. All endpoints are read-only and powered by Cloudflare
    Workers + Hyperdrive.
  contact:
    name: Vision Stats
    url: https://1up.vision
servers:
  - url: http://localhost:8787
    description: Local development
security:
  - BearerAuth: []
tags:
  - name: Meta
    description: Operational endpoints
  - name: Streamer
    description: Streamer level information
  - name: Streams
    description: Individual stream analytics
  - name: Leaderboard
    description: Aggregated leaderboards
  - name: Partners
    description: Sponsor and partner information
  - name: Events
    description: Public events
paths:
  /v1/streamer/{name}:
    get:
      tags:
        - Streamer
      summary: Get streamer profile
      description: Returns profile information for a specific streamer.
      parameters:
        - name: name
          in: path
          required: true
          schema:
            type: string
          description: Streamer username/login (lowercase) or numeric Twitch channel id.
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StreamerProfile'
        '401':
          description: Missing or invalid bearer token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Streamer not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Rate limited
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Failed to fetch streamer
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    StreamerProfile:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        display_name:
          type: string
        profile_image:
          type: string
          format: uri
          nullable: true
        type:
          type: string
          nullable: true
        followers:
          type: integer
        subs:
          type: integer
          nullable: true
        gender:
          type: string
          nullable: true
        management:
          type: string
          nullable: true
        real_name:
          type: string
          nullable: true
        city:
          type: string
          nullable: true
        birthday:
          type: string
          format: date
          nullable: true
        age:
          type: integer
          nullable: true
        banned:
          type: boolean
          nullable: true
        ban_reason:
          type: string
          nullable: true
        automated:
          type: boolean
          nullable: true
        email:
          type: string
          format: email
          nullable: true
        demographics:
          type: string
          nullable: true
        size_tier:
          type: string
          nullable: true
        active:
          type: boolean
          nullable: true
        tracked_at:
          type: string
          format: date-time
          nullable: true
        created_at:
          type: string
          format: date-time
          nullable: true
      additionalProperties: true
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
      required:
        - error
      additionalProperties: false
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Token
      description: >-
        Optional bearer token enforced when the Worker is configured with an API
        token.

````