> ## 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/interests/stories

> Get the Ground News stories feed for an interest (topic, person, place or news source) by slug. Each story card carries the political-bias distribution, blindspot info, factuality and ownership distribution of the covering sources, geography, topics and a per-source list.

**Price:** 10 credits per 15 results

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



## OpenAPI

````yaml /openapi/news-publishing.json post /api/ground_news/interests/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/interests/stories:
    post:
      tags:
        - /ground_news
      summary: /ground_news/interests/stories
      description: >-
        Get the Ground News stories feed for an interest (topic, person, place
        or news source) by slug. Each story card carries the political-bias
        distribution, blindspot info, factuality and ownership distribution of
        the covering sources, geography, topics and a per-source list.


        **Price:** 10 credits per 15 results


        **⚠️ Common errors:** 412: Interest not found (well-formed but
        nonexistent slug)
      operationId: __api_ground_news_interests_stories_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GroundNewsInterestStoriesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GroundNewsStoryCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GroundNewsInterestStoriesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        interest:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - interest
        - count
    GroundNewsStoryCard:
      properties:
        '@type':
          type: string
          default: GroundNewsStoryCard
        id:
          type: string
        slug:
          type: string
        generated_headline:
          anyOf:
            - type: string
            - type: 'null'
        dek:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        start:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        source_count:
          anyOf:
            - type: integer
            - type: 'null'
        bias_source_count:
          anyOf:
            - type: integer
            - 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_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'
        place:
          items:
            $ref: '#/components/schemas/GroundNewsPlace'
          type: array
          default: []
        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
    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

````