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

# /displayspecifications/news

> Return one DisplaySpecifications news article: headline, publication timestamp, lead image, the body as plain text and as HTML, every inline image, the ids of the models the article links to and the related articles the source lists beside it.

**Price:** 5 credits

**⚠️ Common errors:** 412: No news article exists under this id on DisplaySpecifications.



## OpenAPI

````yaml /openapi/hardware-benchmarks.json post /api/displayspecifications/news
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/displayspecifications/news:
    post:
      tags:
        - /displayspecifications
      summary: /displayspecifications/news
      description: >-
        Return one DisplaySpecifications news article: headline, publication
        timestamp, lead image, the body as plain text and as HTML, every inline
        image, the ids of the models the article links to and the related
        articles the source lists beside it.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: No news article exists under this id on
        DisplaySpecifications.
      operationId: __api_displayspecifications_news_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DisplayspecificationsNewsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DisplayspecificationsNewsArticle'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DisplayspecificationsNewsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        article:
          type: string
          minLength: 1
      type: object
      required:
        - article
    DisplayspecificationsNewsArticle:
      properties:
        '@type':
          type: string
          default: DisplayspecificationsNewsArticle
        id:
          type: string
        url:
          type: string
        locale:
          type: string
        headline:
          type: string
        published:
          anyOf:
            - type: string
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        text:
          type: string
        html:
          type: string
        images:
          items:
            type: string
          type: array
          default: []
        linked_model_ids:
          items:
            type: string
          type: array
          default: []
        related_news:
          items:
            $ref: '#/components/schemas/DisplayspecificationsRelatedNews'
          type: array
          default: []
      type: object
      required:
        - id
        - url
        - locale
        - headline
        - text
        - html
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    DisplayspecificationsRelatedNews:
      properties:
        '@type':
          type: string
          default: DisplayspecificationsRelatedNews
        id:
          type: string
        url:
          type: string
        headline:
          type: string
      type: object
      required:
        - id
        - url
        - headline
    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

````