Twitch Extension Analytics API

Analytics data for extensions

Operations 1

GET /analytics/extensions Twitch Get Extension Analytics #

Documentation

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/twitch-extension-analytics-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

twitch-extension-analytics-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Twitch Insights and Analytics Extension Analytics API
  description: APIs for accessing extension and game analytics data including views, clicks, hours watched, and concurrent streamers as downloadable CSV reports. Provides both extension analytics and game analytics endpoints.
  version: '1.0'
  contact:
    name: Twitch Developer Support
    url: https://dev.twitch.tv/support/
  termsOfService: https://www.twitch.tv/p/legal/terms-of-service/
servers:
- url: https://api.twitch.tv/helix
  description: Twitch Helix API Production
security:
- oauth2: []
tags:
- name: Extension Analytics
  description: Analytics data for extensions
paths:
  /analytics/extensions:
    get:
      operationId: getExtensionAnalytics
      summary: Twitch Get Extension Analytics
      description: Gets an analytics report for one or more extensions. The response includes a URL to a downloadable CSV file containing the analytics data.
      tags:
      - Extension Analytics
      parameters:
      - $ref: '#/components/parameters/clientId'
      - name: extension_id
        in: query
        schema:
          type: string
        description: Extension ID to filter by
      - name: type
        in: query
        schema:
          type: string
          enum:
          - overview_v2
        description: The type of analytics report
      - name: started_at
        in: query
        schema:
          type: string
          format: date-time
        description: Start of the date range (RFC 3339)
      - name: ended_at
        in: query
        schema:
          type: string
          format: date-time
        description: End of the date range (RFC 3339)
      - name: first
        in: query
        schema:
          type: integer
          default: 20
          maximum: 100
        description: Maximum number of results to return
      - name: after
        in: query
        schema:
          type: string
        description: Cursor for forward pagination
      responses:
        '200':
          description: Extension analytics returned successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/ExtensionAnalyticsReport'
                  pagination:
                    $ref: '#/components/schemas/Pagination'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
        status:
          type: integer
        message:
          type: string
    ExtensionAnalyticsReport:
      type: object
      properties:
        extension_id:
          type: string
          description: The extension ID
        URL:
          type: string
          description: URL to the downloadable CSV analytics report
        type:
          type: string
          description: The type of report
        date_range:
          type: object
          properties:
            started_at:
              type: string
              format: date-time
            ended_at:
              type: string
              format: date-time
    Pagination:
      type: object
      properties:
        cursor:
          type: string
  parameters:
    clientId:
      name: Client-Id
      in: header
      required: true
      schema:
        type: string
      description: Your registered application's client ID
  responses:
    Unauthorized:
      description: Authentication required or token is invalid
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://id.twitch.tv/oauth2/authorize
          tokenUrl: https://id.twitch.tv/oauth2/token
          scopes:
            analytics:read:extensions: View analytics data for extensions
            analytics:read:games: View analytics data for games
externalDocs:
  description: Twitch Insights Documentation
  url: https://dev.twitch.tv/docs/insights/