> ## 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/sources

> Get a Ground News news-source profile by slug: political-bias label, factuality label, source tier, ownership, location, and the per-reviewer media-bias and factuality ratings from AllSides, Ad Fontes Media and Media Bias/Fact Check (each with the external reviewer's reference URL).

**Price:** 10 credits

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



## OpenAPI

````yaml /openapi/news-publishing.json post /api/ground_news/sources
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/sources:
    post:
      tags:
        - /ground_news
      summary: /ground_news/sources
      description: >-
        Get a Ground News news-source profile by slug: political-bias label,
        factuality label, source tier, ownership, location, and the per-reviewer
        media-bias and factuality ratings from AllSides, Ad Fontes Media and
        Media Bias/Fact Check (each with the external reviewer's reference URL).


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Source not found (well-formed but nonexistent
        slug)
      operationId: __api_ground_news_sources_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GroundNewsSourcesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GroundNewsSource'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GroundNewsSourcesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        source:
          type: string
          minLength: 1
      type: object
      required:
        - source
    GroundNewsSource:
      properties:
        '@type':
          type: string
          default: GroundNewsSource
        id:
          type: string
        name:
          type: string
        alias:
          type: string
        domains:
          items:
            type: string
          type: array
          default: []
        bias:
          anyOf:
            - type: string
            - type: 'null'
        factuality:
          anyOf:
            - type: string
            - type: 'null'
        source_tier:
          anyOf:
            - type: integer
            - type: 'null'
        interest_id:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        twitter:
          anyOf:
            - type: string
            - type: 'null'
        wikipedia:
          anyOf:
            - type: string
            - type: 'null'
        paywall:
          anyOf:
            - type: string
            - type: 'null'
        is_satire:
          type: boolean
          default: false
        story_count:
          anyOf:
            - type: integer
            - type: 'null'
        recent_story_count:
          anyOf:
            - type: integer
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        place:
          items:
            $ref: '#/components/schemas/GroundNewsPlace'
          type: array
          default: []
        bias_ratings:
          items:
            $ref: '#/components/schemas/GroundNewsBiasRating'
          type: array
          default: []
        factuality_ratings:
          items:
            $ref: '#/components/schemas/GroundNewsFactualityRating'
          type: array
          default: []
        owners:
          items:
            $ref: '#/components/schemas/GroundNewsOwner'
          type: array
          default: []
      type: object
      required:
        - id
        - name
        - alias
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      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
    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
    GroundNewsFactualityRating:
      properties:
        '@type':
          type: string
          default: GroundNewsFactualityRating
        reviewer:
          type: string
        score:
          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
    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

````