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

# /theverge/articles

> Get a full The Verge story by id, URL or node id: headline, excerpt, the body as plain text and as HTML, separate first-publication, publication and update timestamps, word count, every credited author with job title and bio, the topic taxonomy with its parent chain, the storystreams the piece belongs to, the lede image with caption and photo credit, the live comment count and the SEO, social and promo headline variants. Works for all three kinds of Verge story: full articles, the short quick posts, and storystreams, which also list the pieces they collect.

**Price:** 1 credit

**⚠️ Common errors:** 412: Story not found (well-formed but nonexistent id or URL, or a URL that is not a story)



## OpenAPI

````yaml /openapi/news-publishing.json post /api/theverge/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/theverge/articles:
    post:
      tags:
        - /theverge
      summary: /theverge/articles
      description: >-
        Get a full The Verge story by id, URL or node id: headline, excerpt, the
        body as plain text and as HTML, separate first-publication, publication
        and update timestamps, word count, every credited author with job title
        and bio, the topic taxonomy with its parent chain, the storystreams the
        piece belongs to, the lede image with caption and photo credit, the live
        comment count and the SEO, social and promo headline variants. Works for
        all three kinds of Verge story: full articles, the short quick posts,
        and storystreams, which also list the pieces they collect.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Story not found (well-formed but nonexistent
        id or URL, or a URL that is not a story)
      operationId: __api_theverge_articles_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ThevergeArticlesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ThevergeArticle'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ThevergeArticlesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        article:
          type: string
          minLength: 1
      type: object
      required:
        - article
    ThevergeArticle:
      properties:
        '@type':
          type: string
          default: ThevergeArticle
        id:
          type: integer
        node_id:
          type: string
        content_type:
          anyOf:
            - type: string
            - type: 'null'
        article_title:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          type: string
        path:
          anyOf:
            - type: string
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        first_published_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        excerpt:
          anyOf:
            - type: string
            - type: 'null'
        word_count:
          anyOf:
            - type: integer
            - type: 'null'
        comment_count:
          anyOf:
            - type: integer
            - type: 'null'
        comments_enabled:
          type: boolean
          default: false
        comments_mode:
          anyOf:
            - type: string
            - type: 'null'
        chorus_id:
          anyOf:
            - type: integer
            - type: 'null'
        chorus_uuid:
          anyOf:
            - type: string
            - type: 'null'
        is_paywall_eligible:
          type: boolean
          default: false
        has_affiliate_links:
          type: boolean
          default: false
        is_live:
          type: boolean
          default: false
        status:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        image_alt:
          anyOf:
            - type: string
            - type: 'null'
        image_width:
          anyOf:
            - type: integer
            - type: 'null'
        image_height:
          anyOf:
            - type: integer
            - type: 'null'
        image_caption:
          anyOf:
            - type: string
            - type: 'null'
        image_credit:
          anyOf:
            - type: string
            - type: 'null'
        image_credit_hidden:
          type: boolean
          default: false
        authors:
          items:
            $ref: '#/components/schemas/ThevergeAuthorBrief'
          type: array
          default: []
        additional_bylines:
          anyOf:
            - type: string
            - type: 'null'
        primary_category:
          anyOf:
            - $ref: '#/components/schemas/ThevergeCategory'
            - type: 'null'
        categories:
          items:
            $ref: '#/components/schemas/ThevergeCategory'
          type: array
          default: []
        streams:
          items:
            $ref: '#/components/schemas/ThevergeStream'
          type: array
          default: []
        text:
          anyOf:
            - type: string
            - type: 'null'
        html:
          anyOf:
            - type: string
            - type: 'null'
        seo_headline:
          anyOf:
            - type: string
            - type: 'null'
        seo_description:
          anyOf:
            - type: string
            - type: 'null'
        social_headline:
          anyOf:
            - type: string
            - type: 'null'
        social_description:
          anyOf:
            - type: string
            - type: 'null'
        promo_headline:
          anyOf:
            - type: string
            - type: 'null'
        link_url:
          anyOf:
            - type: string
            - type: 'null'
        link_title:
          anyOf:
            - type: string
            - type: 'null'
        link_source:
          anyOf:
            - type: string
            - type: 'null'
        feed_url:
          anyOf:
            - type: string
            - type: 'null'
        stream_articles:
          items:
            $ref: '#/components/schemas/ThevergeArticleRef'
          type: array
          default: []
      type: object
      required:
        - id
        - node_id
        - article_title
        - web_url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ThevergeAuthorBrief:
      properties:
        '@type':
          type: string
          default: ThevergeAuthorBrief
        id:
          anyOf:
            - type: integer
            - type: 'null'
        node_id:
          type: string
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        path:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        job_title:
          anyOf:
            - type: string
            - type: 'null'
        short_bio:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - node_id
        - name
    ThevergeCategory:
      properties:
        '@type':
          type: string
          default: ThevergeCategory
        id:
          anyOf:
            - type: integer
            - type: 'null'
        node_id:
          type: string
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        path:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        is_hub:
          type: boolean
          default: false
        breadcrumbs:
          items:
            $ref: '#/components/schemas/ThevergeCategoryRef'
          type: array
          default: []
      type: object
      required:
        - node_id
        - name
    ThevergeStream:
      properties:
        '@type':
          type: string
          default: ThevergeStream
        id:
          anyOf:
            - type: integer
            - type: 'null'
        node_id:
          type: string
        name:
          type: string
        path:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        chorus_id:
          anyOf:
            - type: integer
            - type: 'null'
        is_live:
          type: boolean
          default: false
      type: object
      required:
        - node_id
        - name
    ThevergeArticleRef:
      properties:
        '@type':
          type: string
          default: ThevergeArticleRef
        id:
          anyOf:
            - type: integer
            - type: 'null'
        node_id:
          type: string
        content_type:
          anyOf:
            - type: string
            - type: 'null'
        article_title:
          type: string
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - node_id
        - article_title
    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
    ThevergeCategoryRef:
      properties:
        '@type':
          type: string
          default: ThevergeCategoryRef
        node_id:
          type: string
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        path:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - node_id
        - name
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````