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

# /npr/podcasts

> Get an NPR podcast or show by its id: title, description, cover art, publisher and owner contact, language, iTunes categories, feed type, the countries the audio is licensed for, membership funding link, number of episodes in the feed and the time of the latest one.

**Price:** 1 credit

**⚠️ Common errors:** 412: No podcast with this id — the id is unknown or belongs to a topic or section rather than a podcast



## OpenAPI

````yaml /openapi/news-publishing.json post /api/npr/podcasts
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/npr/podcasts:
    post:
      tags:
        - /npr
      summary: /npr/podcasts
      description: >-
        Get an NPR podcast or show by its id: title, description, cover art,
        publisher and owner contact, language, iTunes categories, feed type, the
        countries the audio is licensed for, membership funding link, number of
        episodes in the feed and the time of the latest one.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No podcast with this id — the id is unknown
        or belongs to a topic or section rather than a podcast
      operationId: __api_npr_podcasts_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NprPodcastsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NprPodcast'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    NprPodcastsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        show:
          type: string
          minLength: 1
      type: object
      required:
        - show
    NprPodcast:
      properties:
        '@type':
          type: string
          default: NprPodcast
        id:
          type: string
        show_title:
          type: string
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        feed_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        author:
          anyOf:
            - type: string
            - type: 'null'
        owner:
          anyOf:
            - type: string
            - type: 'null'
        owner_email:
          anyOf:
            - type: string
            - type: 'null'
        language:
          anyOf:
            - type: string
            - type: 'null'
        copyright:
          anyOf:
            - type: string
            - type: 'null'
        generator:
          anyOf:
            - type: string
            - type: 'null'
        feed_type:
          anyOf:
            - type: string
            - type: 'null'
        is_explicit:
          type: boolean
          default: false
        is_blocked:
          type: boolean
          default: false
        categories:
          items:
            $ref: '#/components/schemas/NprPodcastCategory'
          type: array
          default: []
        allowed_countries:
          items:
            type: string
          type: array
          default: []
        funding_text:
          anyOf:
            - type: string
            - type: 'null'
        funding_url:
          anyOf:
            - type: string
            - type: 'null'
        episode_count:
          type: integer
          default: 0
        last_build_at:
          anyOf:
            - type: integer
            - type: 'null'
        latest_episode_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - show_title
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    NprPodcastCategory:
      properties:
        '@type':
          type: string
          default: NprPodcastCategory
        name:
          type: string
        subcategories:
          items:
            type: string
          type: array
          default: []
      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

````