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

# /ansa/articles

> Get one ANSA article by its URL: headline, standfirst, full body text, publication and last update times, dateline city, byline, section breadcrumb, topic and named-entity tags, lead image with its caption, and media_url — the mp4 file on video items, the episode's player page on podcasts.

**Price:** 5 credits

**⚠️ Common errors:** 412: No ANSA article at this URL, or the URL served a different item, 422: Not an ANSA article URL, or the URL carries no content id



## OpenAPI

````yaml /openapi/news-publishing.json post /api/ansa/articles
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/ansa/articles:
    post:
      tags:
        - /ansa
      summary: /ansa/articles
      description: >-
        Get one ANSA article by its URL: headline, standfirst, full body text,
        publication and last update times, dateline city, byline, section
        breadcrumb, topic and named-entity tags, lead image with its caption,
        and media_url — the mp4 file on video items, the episode's player page
        on podcasts.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: No ANSA article at this URL, or the URL
        served a different item, 422: Not an ANSA article URL, or the URL
        carries no content id
      operationId: __api_ansa_articles_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AnsaArticlesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AnsaArticle'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AnsaArticlesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        article:
          type: string
          minLength: 1
      type: object
      required:
        - article
    AnsaArticle:
      properties:
        '@type':
          type: string
          default: AnsaArticle
        id:
          type: string
        article_title:
          type: string
        text:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          type: string
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        section:
          anyOf:
            - type: string
            - type: 'null'
        sections:
          items:
            type: string
          type: array
          default: []
        channel:
          type: string
        content_type:
          type: string
        dateline:
          anyOf:
            - type: string
            - type: 'null'
        byline:
          anyOf:
            - type: string
            - type: 'null'
        tags:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        image_caption:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            $ref: '#/components/schemas/AnsaImage'
          type: array
          default: []
        media_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - article_title
        - web_url
        - channel
        - content_type
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    AnsaImage:
      properties:
        '@type':
          type: string
          default: AnsaImage
        image:
          type: string
        caption:
          anyOf:
            - type: string
            - type: 'null'
        alt:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - image
    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

````