> ## 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.

# /gsmarena/devices

> Return the full GSMArena specification sheet for one mobile device: name, manufacturer, official image, headline figures (release, body, software, storage, display, cameras, RAM, chipset, battery), the complete spec table grouped by section, retailer offers and the links to that device's editorial review or hands-on/preview news article, user opinions, picture gallery and GSMArena's own YouTube video review of the device, when one exists.

**Price:** 5 credits

**⚠️ Common errors:** 412: No device exists under this id on GSMArena.



## OpenAPI

````yaml /openapi/hardware-benchmarks.json post /api/gsmarena/devices
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/gsmarena/devices:
    post:
      tags:
        - /gsmarena
      summary: /gsmarena/devices
      description: >-
        Return the full GSMArena specification sheet for one mobile device:
        name, manufacturer, official image, headline figures (release, body,
        software, storage, display, cameras, RAM, chipset, battery), the
        complete spec table grouped by section, retailer offers and the links to
        that device's editorial review or hands-on/preview news article, user
        opinions, picture gallery and GSMArena's own YouTube video review of the
        device, when one exists.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: No device exists under this id on GSMArena.
      operationId: __api_gsmarena_devices_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GsmarenaDevicesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GsmarenaDevice'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GsmarenaDevicesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        device:
          type: string
          minLength: 1
      type: object
      required:
        - device
    GsmarenaDevice:
      properties:
        '@type':
          type: string
          default: GsmarenaDevice
        id:
          type: integer
        url:
          type: string
        name:
          type: string
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_id:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        released:
          anyOf:
            - type: string
            - type: 'null'
        body_highlight:
          anyOf:
            - type: string
            - type: 'null'
        os_highlight:
          anyOf:
            - type: string
            - type: 'null'
        storage_highlight:
          anyOf:
            - type: string
            - type: 'null'
        display_size:
          anyOf:
            - type: string
            - type: 'null'
        display_resolution:
          anyOf:
            - type: string
            - type: 'null'
        main_camera_resolution:
          anyOf:
            - type: string
            - type: 'null'
        video_resolution:
          anyOf:
            - type: string
            - type: 'null'
        ram:
          anyOf:
            - type: string
            - type: 'null'
        chipset:
          anyOf:
            - type: string
            - type: 'null'
        battery_capacity:
          anyOf:
            - type: string
            - type: 'null'
        battery_highlight:
          anyOf:
            - type: string
            - type: 'null'
        popularity:
          anyOf:
            - type: number
            - type: 'null'
        hits:
          anyOf:
            - type: integer
            - type: 'null'
        fans:
          anyOf:
            - type: integer
            - type: 'null'
        review_id:
          anyOf:
            - type: integer
            - type: 'null'
        review_url:
          anyOf:
            - type: string
            - type: 'null'
        news_id:
          anyOf:
            - type: integer
            - type: 'null'
        news_url:
          anyOf:
            - type: string
            - type: 'null'
        video_review_url:
          anyOf:
            - type: string
            - type: 'null'
        opinions_url:
          anyOf:
            - type: string
            - type: 'null'
        pictures_url:
          anyOf:
            - type: string
            - type: 'null'
        price_url:
          anyOf:
            - type: string
            - type: 'null'
        offers:
          items:
            $ref: '#/components/schemas/GsmarenaOffer'
          type: array
          default: []
        specs:
          items:
            $ref: '#/components/schemas/GsmarenaSpec'
          type: array
          default: []
      type: object
      required:
        - id
        - url
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    GsmarenaOffer:
      properties:
        '@type':
          type: string
          default: GsmarenaOffer
        variant:
          anyOf:
            - type: string
            - type: 'null'
        price:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        store_image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - price
    GsmarenaSpec:
      properties:
        '@type':
          type: string
          default: GsmarenaSpec
        section:
          type: string
        label:
          anyOf:
            - type: string
            - type: 'null'
        value:
          type: string
        key:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - section
        - value
    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

````