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

# /ground_news/stories

> Get a full Ground News story by URL or slug. A story is a cluster of articles from many sources covering one event, annotated with a political-bias distribution (left/center/right share of sources and of coverage), a blindspot flag (under-reported by one side), AI-generated Left/Center/Right summaries plus a comparative analysis, factuality and ownership distribution of the covering sources, and a per-source list with each source's bias rating (AllSides, Ad Fontes Media, Media Bias/Fact Check), factuality, ownership and the article URL.

**Price:** 20 credits

**⚠️ Common errors:** 412: Story not found (well-formed but nonexistent slug or URL)



## OpenAPI

````yaml /openapi/news-publishing.json post /api/ground_news/stories
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/ground_news/stories:
    post:
      tags:
        - /ground_news
      summary: /ground_news/stories
      description: >-
        Get a full Ground News story by URL or slug. A story is a cluster of
        articles from many sources covering one event, annotated with a
        political-bias distribution (left/center/right share of sources and of
        coverage), a blindspot flag (under-reported by one side), AI-generated
        Left/Center/Right summaries plus a comparative analysis, factuality and
        ownership distribution of the covering sources, and a per-source list
        with each source's bias rating (AllSides, Ad Fontes Media, Media
        Bias/Fact Check), factuality, ownership and the article URL.


        **Price:** 20 credits


        **⚠️ Common errors:** 412: Story not found (well-formed but nonexistent
        slug or URL)
      operationId: __api_ground_news_stories_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GroundNewsStoriesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GroundNewsStory'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GroundNewsStoriesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        story:
          type: string
          minLength: 1
      type: object
      required:
        - story
    GroundNewsStory:
      properties:
        '@type':
          type: string
          default: GroundNewsStory
        id:
          type: string
        slug:
          type: string
        generated_headline:
          anyOf:
            - type: string
            - type: 'null'
        dek:
          anyOf:
            - type: string
            - type: 'null'
        share_url:
          anyOf:
            - type: string
            - type: 'null'
        start:
          anyOf:
            - type: string
            - type: 'null'
        last_modified:
          anyOf:
            - type: string
            - type: 'null'
        top_news:
          type: boolean
          default: false
        overall_bias:
          anyOf:
            - type: integer
            - type: 'null'
        source_count:
          anyOf:
            - type: integer
            - type: 'null'
        bias_source_count:
          anyOf:
            - type: integer
            - type: 'null'
        left_src_percent:
          anyOf:
            - type: number
            - type: 'null'
        cntr_src_percent:
          anyOf:
            - type: number
            - type: 'null'
        right_src_percent:
          anyOf:
            - type: number
            - type: 'null'
        left_percent:
          anyOf:
            - type: number
            - type: 'null'
        center_percent:
          anyOf:
            - type: number
            - type: 'null'
        right_percent:
          anyOf:
            - type: number
            - type: 'null'
        left_src_count:
          anyOf:
            - type: integer
            - type: 'null'
        cntr_src_count:
          anyOf:
            - type: integer
            - type: 'null'
        right_src_count:
          anyOf:
            - type: integer
            - type: 'null'
        blindspot:
          anyOf:
            - type: string
            - type: 'null'
        blindspot_for:
          anyOf:
            - type: string
            - type: 'null'
        blindspot_statement:
          anyOf:
            - type: string
            - type: 'null'
        coverage_profile_type:
          anyOf:
            - type: string
            - type: 'null'
        factuality:
          anyOf:
            - $ref: '#/components/schemas/GroundNewsFactuality'
            - type: 'null'
        ownership:
          anyOf:
            - $ref: '#/components/schemas/GroundNewsOwnership'
            - type: 'null'
        ai_summaries:
          anyOf:
            - $ref: '#/components/schemas/GroundNewsAiSummaries'
            - type: 'null'
        place:
          items:
            $ref: '#/components/schemas/GroundNewsPlace'
          type: array
          default: []
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        interests:
          items:
            $ref: '#/components/schemas/GroundNewsInterest'
          type: array
          default: []
        sources:
          items:
            $ref: '#/components/schemas/GroundNewsSourceArticle'
          type: array
          default: []
      type: object
      required:
        - id
        - slug
        - title
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    GroundNewsFactuality:
      properties:
        '@type':
          type: string
          default: GroundNewsFactuality
        very_high:
          anyOf:
            - type: integer
            - type: 'null'
        high:
          anyOf:
            - type: integer
            - type: 'null'
        mixed:
          anyOf:
            - type: integer
            - type: 'null'
        low:
          anyOf:
            - type: integer
            - type: 'null'
        very_low:
          anyOf:
            - type: integer
            - type: 'null'
        unknown:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    GroundNewsOwnership:
      properties:
        '@type':
          type: string
          default: GroundNewsOwnership
        telecom:
          anyOf:
            - type: integer
            - type: 'null'
        private_equity:
          anyOf:
            - type: integer
            - type: 'null'
        media_conglomerate:
          anyOf:
            - type: integer
            - type: 'null'
        billionaire:
          anyOf:
            - type: integer
            - type: 'null'
        government:
          anyOf:
            - type: integer
            - type: 'null'
        independent:
          anyOf:
            - type: integer
            - type: 'null'
        corporation:
          anyOf:
            - type: integer
            - type: 'null'
        other:
          anyOf:
            - type: integer
            - type: 'null'
        uncategorized:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    GroundNewsAiSummaries:
      properties:
        '@type':
          type: string
          default: GroundNewsAiSummaries
        left:
          anyOf:
            - type: string
            - type: 'null'
        center:
          anyOf:
            - type: string
            - type: 'null'
        right:
          anyOf:
            - type: string
            - type: 'null'
        analysis:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    GroundNewsPlace:
      properties:
        '@type':
          type: string
          default: GroundNewsPlace
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          type: string
        type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    GroundNewsInterest:
      properties:
        '@type':
          type: string
          default: GroundNewsInterest
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        type:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    GroundNewsSourceArticle:
      properties:
        '@type':
          type: string
          default: GroundNewsSourceArticle
        source_id:
          anyOf:
            - type: string
            - type: 'null'
        source_name:
          type: string
        source_alias:
          anyOf:
            - type: string
            - type: 'null'
        interest_id:
          anyOf:
            - type: string
            - type: 'null'
        bias:
          anyOf:
            - type: string
            - type: 'null'
        factuality:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        reference_url:
          anyOf:
            - type: string
            - type: 'null'
        date:
          anyOf:
            - type: string
            - type: 'null'
        is_opinion:
          type: boolean
          default: false
        bias_ratings:
          items:
            $ref: '#/components/schemas/GroundNewsBiasRating'
          type: array
          default: []
        owners:
          items:
            $ref: '#/components/schemas/GroundNewsOwner'
          type: array
          default: []
      type: object
      required:
        - source_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
    GroundNewsBiasRating:
      properties:
        '@type':
          type: string
          default: GroundNewsBiasRating
        reviewer:
          type: string
        political_bias:
          anyOf:
            - type: string
            - type: 'null'
        reference_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - reviewer
    GroundNewsOwner:
      properties:
        '@type':
          type: string
          default: GroundNewsOwner
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          type: string
        category:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````