> ## 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/apps

> Get Steam app details by app ID

**Price:** 1 credit

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



## OpenAPI

````yaml /openapi/games.json post /api/steam/apps
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/apps:
    post:
      tags:
        - /steam
      summary: /steam/apps
      description: >-
        Get Steam app details by app ID


        **Price:** 1 credit


        **⚠️ Common errors:** 412: App not found or unavailable in the requested
        storefront
      operationId: __api_steam_apps_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SteamAppPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SteamApp'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SteamAppPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        appid:
          type: string
          minLength: 1
        cc:
          $ref: '#/components/schemas/SteamCountry'
          default: us
        language:
          type: string
          minLength: 2
          default: en
      type: object
      required:
        - appid
    SteamApp:
      properties:
        '@type':
          type: string
          default: SteamApp
        id:
          type: integer
        type:
          anyOf:
            - type: string
            - type: 'null'
        name:
          type: string
        is_free:
          type: boolean
          default: false
        required_age:
          anyOf:
            - type: integer
            - type: 'null'
        controller_support:
          anyOf:
            - type: string
            - type: 'null'
        short_description:
          anyOf:
            - type: string
            - type: 'null'
        about_the_game:
          anyOf:
            - type: string
            - type: 'null'
        detailed_description:
          anyOf:
            - type: string
            - type: 'null'
        supported_languages:
          anyOf:
            - type: string
            - type: 'null'
        website:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        capsule_image:
          anyOf:
            - type: string
            - type: 'null'
        background:
          anyOf:
            - type: string
            - type: 'null'
        release_date:
          anyOf:
            - type: string
            - type: 'null'
        coming_soon:
          type: boolean
          default: false
        price:
          anyOf:
            - $ref: '#/components/schemas/SteamPrice'
            - type: 'null'
        developers:
          items:
            type: string
          type: array
          default: []
        publishers:
          items:
            type: string
          type: array
          default: []
        genres:
          items:
            $ref: '#/components/schemas/SteamGenre'
          type: array
          default: []
        categories:
          items:
            $ref: '#/components/schemas/SteamCategory'
          type: array
          default: []
        platforms:
          anyOf:
            - $ref: '#/components/schemas/SteamPlatforms'
            - type: 'null'
        screenshots:
          items:
            $ref: '#/components/schemas/SteamScreenshot'
          type: array
          default: []
        movies:
          items:
            $ref: '#/components/schemas/SteamMovie'
          type: array
          default: []
        dlc:
          items:
            type: integer
          type: array
          default: []
        packages:
          items:
            type: integer
          type: array
          default: []
        metacritic:
          anyOf:
            - $ref: '#/components/schemas/SteamMetacritic'
            - type: 'null'
        recommendation_count:
          anyOf:
            - type: integer
            - type: 'null'
        achievement_count:
          anyOf:
            - type: integer
            - type: 'null'
        pc_requirements:
          anyOf:
            - $ref: '#/components/schemas/SteamRequirements'
            - type: 'null'
        mac_requirements:
          anyOf:
            - $ref: '#/components/schemas/SteamRequirements'
            - type: 'null'
        linux_requirements:
          anyOf:
            - $ref: '#/components/schemas/SteamRequirements'
            - type: 'null'
        ratings:
          items:
            $ref: '#/components/schemas/SteamRating'
          type: array
          default: []
        content_descriptors:
          anyOf:
            - $ref: '#/components/schemas/SteamContentDescriptors'
            - type: 'null'
        package_groups:
          items:
            $ref: '#/components/schemas/SteamPackageGroup'
          type: array
          default: []
        support_url:
          anyOf:
            - type: string
            - type: 'null'
        support_email:
          anyOf:
            - type: string
            - type: 'null'
      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
    SteamPrice:
      properties:
        '@type':
          type: string
          default: SteamPrice
        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'
        final_formatted:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SteamGenre:
      properties:
        '@type':
          type: string
          default: SteamGenre
        id:
          type: string
      type: object
      required:
        - id
        - description
    SteamCategory:
      properties:
        '@type':
          type: string
          default: SteamCategory
        id:
          type: integer
      type: object
      required:
        - id
        - description
    SteamPlatforms:
      properties:
        '@type':
          type: string
          default: SteamPlatforms
        windows:
          type: boolean
          default: false
        mac:
          type: boolean
          default: false
        linux:
          type: boolean
          default: false
      type: object
    SteamScreenshot:
      properties:
        '@type':
          type: string
          default: SteamScreenshot
        id:
          type: integer
        thumbnail:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    SteamMovie:
      properties:
        '@type':
          type: string
          default: SteamMovie
        id:
          type: integer
        name:
          anyOf:
            - type: string
            - type: 'null'
        thumbnail:
          anyOf:
            - type: string
            - type: 'null'
        mp4:
          anyOf:
            - type: string
            - type: 'null'
        webm:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    SteamMetacritic:
      properties:
        '@type':
          type: string
          default: SteamMetacritic
        score:
          anyOf:
            - type: integer
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SteamRequirements:
      properties:
        '@type':
          type: string
          default: SteamRequirements
        minimum:
          anyOf:
            - type: string
            - type: 'null'
        recommended:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SteamRating:
      properties:
        '@type':
          type: string
          default: SteamRating
        board:
          type: string
        rating:
          anyOf:
            - type: string
            - type: 'null'
        required_age:
          anyOf:
            - type: integer
            - type: 'null'
        descriptors:
          anyOf:
            - type: string
            - type: 'null'
        banned:
          type: boolean
          default: false
      type: object
      required:
        - board
    SteamContentDescriptors:
      properties:
        '@type':
          type: string
          default: SteamContentDescriptors
        ids:
          items:
            type: integer
          type: array
          default: []
        notes:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SteamPackageGroup:
      properties:
        '@type':
          type: string
          default: SteamPackageGroup
        name:
          anyOf:
            - type: string
            - type: 'null'
        selection_text:
          anyOf:
            - type: string
            - type: 'null'
        is_recurring_subscription:
          type: boolean
          default: false
        subs:
          items:
            $ref: '#/components/schemas/SteamPackageGroupSub'
          type: array
          default: []
      type: object
    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
    SteamPackageGroupSub:
      properties:
        '@type':
          type: string
          default: SteamPackageGroupSub
        package_id:
          type: integer
        option_text:
          anyOf:
            - type: string
            - type: 'null'
        option_description:
          anyOf:
            - type: string
            - type: 'null'
        price_with_discount:
          anyOf:
            - type: integer
            - type: 'null'
        discount_percent:
          anyOf:
            - type: integer
            - type: 'null'
        is_free_license:
          type: boolean
          default: false
      type: object
      required:
        - package_id
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````