> ## 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/categories/articles

> Browse a The Verge topic or section in reverse-chronological order. Works for every slug in the unified topic namespace, from broad sections such as tech, ai or policy down to per-company and per-product topics such as openai or iphone. Each story carries headline, excerpt, publish and update timestamps, credited authors, topic taxonomy, lede image and live comment count.

**Price:** 1 credit

**⚠️ Common errors:** 412: Topic not found (well-formed but nonexistent slug, or a slug that is not a topic archive)



## OpenAPI

````yaml /openapi/news-publishing.json post /api/theverge/categories/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/categories/articles:
    post:
      tags:
        - /theverge
      summary: /theverge/categories/articles
      description: >-
        Browse a The Verge topic or section in reverse-chronological order.
        Works for every slug in the unified topic namespace, from broad sections
        such as tech, ai or policy down to per-company and per-product topics
        such as openai or iphone. Each story carries headline, excerpt, publish
        and update timestamps, credited authors, topic taxonomy, lede image and
        live comment count.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Topic not found (well-formed but nonexistent
        slug, or a slug that is not a topic archive)
      operationId: __api_theverge_categories_articles_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ThevergeCategoriesArticlesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ThevergeArticleCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ThevergeCategoriesArticlesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        category:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - category
        - count
    ThevergeArticleCard:
      properties:
        '@type':
          type: string
          default: ThevergeArticleCard
        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: []
      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
    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

````