Twitch Entitlements API

Manage Drops entitlements and fulfillment

Operations 2

GET /entitlements/drops Twitch Get Drops Entitlements #
PATCH /entitlements/drops/update Twitch Update Drops Entitlements #

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-entitlements-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-entitlements-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Twitch Entitlements API
  version: '1.0'
  contact:
    name: Twitch Developer Support
    url: https://dev.twitch.tv/support/
  termsOfService: https://www.twitch.tv/p/legal/terms-of-service/
  description: 'Operations tagged Entitlements across 2 of this provider''s published API definitions: twitch-drops-openapi.yml, twitch-helix-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.twitch.tv/helix
  description: Twitch Helix API Production
tags:
- name: Entitlements
  description: Manage Drops entitlements and fulfillment
paths:
  /entitlements/drops:
    get:
      operationId: getDropsEntitlements
      summary: Twitch Get Drops Entitlements
      description: Gets an organization's list of entitlements that have been granted to all of its games. Use this to track which rewards need to be fulfilled.
      tags:
      - Entitlements
      parameters:
      - $ref: '#/components/parameters/clientId'
      - name: id
        in: query
        schema:
          type: string
        description: Entitlement ID to filter by
      - name: user_id
        in: query
        schema:
          type: string
        description: User ID to filter by
      - name: game_id
        in: query
        schema:
          type: string
        description: Game ID to filter by
      - name: fulfillment_status
        in: query
        schema:
          type: string
          enum:
          - CLAIMED
          - FULFILLED
        description: Filter by fulfillment status
      - name: first
        in: query
        schema:
          type: integer
          default: 20
          maximum: 1000
        description: Maximum number of results to return
      - name: after
        in: query
        schema:
          type: string
        description: Cursor for forward pagination
      responses:
        '200':
          description: Drops entitlements returned successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/DropsEntitlement'
                  pagination:
                    $ref: '#/components/schemas/Pagination'
        '401':
          $ref: '#/components/responses/Unauthorized'
      security:
      - oauth2: []
    servers:
    - url: https://api.twitch.tv/helix
      description: Twitch Helix API Production
  /entitlements/drops/update:
    patch:
      operationId: updateDropsEntitlements
      summary: Twitch Update Drops Entitlements
      description: Updates the fulfillment status of one or more entitlements. Mark entitlements as FULFILLED after delivering the reward to the user.
      tags:
      - Entitlements
      parameters:
      - $ref: '#/components/parameters/clientId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - entitlement_ids
              - fulfillment_status
              properties:
                entitlement_ids:
                  type: array
                  items:
                    type: string
                  maxItems: 100
                  description: List of entitlement IDs to update
                fulfillment_status:
                  type: string
                  enum:
                  - CLAIMED
                  - FULFILLED
                  description: New fulfillment status
      responses:
        '200':
          description: Entitlements updated successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        status:
                          type: string
                          enum:
                          - SUCCESS
                          - INVALID_ID
                          - NOT_FOUND
                          - UNAUTHORIZED
                          - UPDATE_FAILED
                        ids:
                          type: array
                          items:
                            type: string
        '400':
          description: Invalid request
        '401':
          $ref: '#/components/responses/Unauthorized'
      security:
      - oauth2: []
    servers:
    - url: https://api.twitch.tv/helix
      description: Twitch Helix API Production
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
        status:
          type: integer
        message:
          type: string
    Pagination:
      type: object
      properties:
        cursor:
          type: string
    DropsEntitlement:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the entitlement
        benefit_id:
          type: string
          description: The benefit ID associated with this entitlement
        timestamp:
          type: string
          format: date-time
          description: When the entitlement was granted
        user_id:
          type: string
          description: The user ID of the viewer who earned the entitlement
        game_id:
          type: string
          description: The game ID of the game the viewer was watching
        fulfillment_status:
          type: string
          enum:
          - CLAIMED
          - FULFILLED
          description: Current fulfillment status
        last_updated:
          type: string
          format: date-time
          description: When the entitlement was last updated
    Pagination_2:
      type: object
      properties:
        cursor:
          type: string
          description: Cursor value for pagination
    DropsEntitlement_2:
      type: object
      properties:
        id:
          type: string
        benefit_id:
          type: string
        timestamp:
          type: string
          format: date-time
        user_id:
          type: string
        game_id:
          type: string
        fulfillment_status:
          type: string
          enum:
          - CLAIMED
          - FULFILLED
        last_updated:
          type: string
          format: date-time
  parameters:
    clientId:
      name: Client-Id
      in: header
      required: true
      schema:
        type: string
      description: Your registered application's client ID
    first:
      name: first
      in: query
      schema:
        type: integer
        default: 20
        maximum: 100
      description: Maximum number of items to return
    after:
      name: after
      in: query
      schema:
        type: string
      description: Cursor for forward pagination
  responses:
    Unauthorized:
      description: Authentication required or token is invalid
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://id.twitch.tv/oauth2/token
          scopes: {}
    appAccessToken:
      type: http
      scheme: bearer
      description: App Access Token obtained via Client Credentials grant
x-refined-from:
- twitch-drops-openapi.yml
- twitch-helix-openapi.yml