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

# /notebookcheck/devices

> Get one laptop, phone or tablet with its specifications and the reviews written about it elsewhere

**Price:** 5 credits

**⚠️ Common errors:** 412: The page id does not exist, or it belongs to a page that is not a device record.



## OpenAPI

````yaml /openapi/hardware-benchmarks.json post /api/notebookcheck/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/notebookcheck/devices:
    post:
      tags:
        - /notebookcheck
      summary: /notebookcheck/devices
      description: >-
        Get one laptop, phone or tablet with its specifications and the reviews
        written about it elsewhere


        **Price:** 5 credits


        **⚠️ Common errors:** 412: The page id does not exist, or it belongs to
        a page that is not a device record.
      operationId: __api_notebookcheck_devices_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NotebookcheckDevicePayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NotebookcheckDevice'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    NotebookcheckDevicePayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        device:
          type: string
          minLength: 1
      type: object
      required:
        - device
    NotebookcheckDevice:
      properties:
        '@type':
          type: string
          default: NotebookcheckDevice
        id:
          type: string
        url:
          type: string
        name:
          type: string
        series:
          anyOf:
            - type: string
            - type: 'null'
        series_url:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        published_date:
          anyOf:
            - type: string
            - type: 'null'
        processor:
          anyOf:
            - type: string
            - type: 'null'
        processor_url:
          anyOf:
            - type: string
            - type: 'null'
        graphics_adapter:
          anyOf:
            - type: string
            - type: 'null'
        graphics_adapter_url:
          anyOf:
            - type: string
            - type: 'null'
        memory:
          anyOf:
            - type: string
            - type: 'null'
        display:
          anyOf:
            - type: string
            - type: 'null'
        storage:
          anyOf:
            - type: string
            - type: 'null'
        connections:
          anyOf:
            - type: string
            - type: 'null'
        networking:
          anyOf:
            - type: string
            - type: 'null'
        size:
          anyOf:
            - type: string
            - type: 'null'
        battery:
          anyOf:
            - type: string
            - type: 'null'
        operating_system:
          anyOf:
            - type: string
            - type: 'null'
        camera:
          anyOf:
            - type: string
            - type: 'null'
        additional_features:
          anyOf:
            - type: string
            - type: 'null'
        weight_kg:
          anyOf:
            - type: number
            - type: 'null'
        price:
          anyOf:
            - type: string
            - type: 'null'
        external_review_count:
          anyOf:
            - type: integer
            - type: 'null'
        specs:
          items:
            $ref: '#/components/schemas/NotebookcheckSpec'
          type: array
          default: []
        external_reviews:
          items:
            $ref: '#/components/schemas/NotebookcheckExternalReview'
          type: array
          default: []
        related_articles:
          items:
            $ref: '#/components/schemas/NotebookcheckPageRef'
          type: array
          default: []
      type: object
      required:
        - id
        - url
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    NotebookcheckSpec:
      properties:
        '@type':
          type: string
          default: NotebookcheckSpec
        name:
          type: string
        value:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
        - value
    NotebookcheckExternalReview:
      properties:
        '@type':
          type: string
          default: NotebookcheckExternalReview
        review_title:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        publisher:
          anyOf:
            - type: string
            - type: 'null'
        language:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        review_type:
          anyOf:
            - type: string
            - type: 'null'
        length:
          anyOf:
            - type: string
            - type: 'null'
        date:
          anyOf:
            - type: string
            - type: 'null'
        is_online:
          anyOf:
            - type: boolean
            - type: 'null'
        scores:
          items:
            $ref: '#/components/schemas/NotebookcheckSpec'
          type: array
          default: []
      type: object
      required:
        - review_title
    NotebookcheckPageRef:
      properties:
        '@type':
          type: string
          default: NotebookcheckPageRef
        id:
          type: string
        url:
          type: string
        page_title:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
    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

````