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

# /steam/packages

> Get Steam package (bundle/sub) details by package ID

**Price:** 20 credits

**⚠️ Common errors:** 412: Package not found or unavailable in the requested storefront



## OpenAPI

````yaml /openapi/games.json post /api/steam/packages
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/steam/packages:
    post:
      tags:
        - /steam
      summary: /steam/packages
      description: >-
        Get Steam package (bundle/sub) details by package ID


        **Price:** 20 credits


        **⚠️ Common errors:** 412: Package not found or unavailable in the
        requested storefront
      operationId: __api_steam_packages_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SteamPackagePayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SteamPackage'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SteamPackagePayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        packageid:
          type: string
          minLength: 1
        cc:
          $ref: '#/components/schemas/SteamCountry'
          default: us
        language:
          type: string
          minLength: 2
          default: en
      type: object
      required:
        - packageid
    SteamPackage:
      properties:
        '@type':
          type: string
          default: SteamPackage
        id:
          type: integer
        name:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        header_image:
          anyOf:
            - type: string
            - type: 'null'
        small_logo:
          anyOf:
            - type: string
            - type: 'null'
        page_content:
          anyOf:
            - type: string
            - type: 'null'
        purchase_text:
          anyOf:
            - type: string
            - type: 'null'
        controller_support:
          anyOf:
            - type: string
            - type: 'null'
        release_date:
          anyOf:
            - type: string
            - type: 'null'
        coming_soon:
          type: boolean
          default: false
        price:
          anyOf:
            - $ref: '#/components/schemas/SteamPackagePrice'
            - type: 'null'
        platforms:
          anyOf:
            - $ref: '#/components/schemas/SteamPlatforms'
            - type: 'null'
        apps:
          items:
            $ref: '#/components/schemas/SteamPackageApp'
          type: array
          default: []
      type: object
      required:
        - id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SteamCountry:
      type: string
      enum:
        - us
        - gb
        - ca
        - au
        - de
        - fr
        - it
        - es
        - nl
        - se
        - jp
        - kr
        - cn
        - in
        - br
        - mx
        - ru
        - tr
        - pl
        - ae
        - sa
        - sg
        - hk
        - tw
        - id
        - th
        - vn
        - ph
        - my
        - za
    SteamPackagePrice:
      properties:
        '@type':
          type: string
          default: SteamPackagePrice
        currency:
          anyOf:
            - type: string
            - type: 'null'
        initial:
          anyOf:
            - type: integer
            - type: 'null'
        final:
          anyOf:
            - type: integer
            - type: 'null'
        discount_percent:
          anyOf:
            - type: integer
            - type: 'null'
        individual:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    SteamPlatforms:
      properties:
        '@type':
          type: string
          default: SteamPlatforms
        windows:
          type: boolean
          default: false
        mac:
          type: boolean
          default: false
        linux:
          type: boolean
          default: false
      type: object
    SteamPackageApp:
      properties:
        '@type':
          type: string
          default: SteamPackageApp
        id:
          type: integer
        name:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````