The New York Times Company Most Popular API

The Most Popular API from The New York Times Company — 4 operation(s) for most popular.

Operations 4

GET /emailed/{period}.json Most emailed articles on NYTimes.com.
GET /shared/{period}.json Most shared articles on NYTimes.com.
GET /shared/{period}/{share_type}.json Most shared articles on NYTimes.com of specified share type.
GET /viewed/{period}.json Most viewed articles on NYTimes.com.

Documentation

Specifications

Schemas & Data

Other Resources

🔗
Examples
https://raw.githubusercontent.com/api-evangelist/new-york-times-company/refs/heads/main/examples/article-search-example.json
🔗
Signup
https://developer.nytimes.com/accounts/create
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/new-york-times-company/refs/heads/main/examples/top-stories-home-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/new-york-times-company/refs/heads/main/examples/most-popular-emailed-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/new-york-times-company/refs/heads/main/examples/timeswire-content-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/new-york-times-company/refs/heads/main/examples/archive-month-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/new-york-times-company/refs/heads/main/examples/books-best-sellers-list-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/new-york-times-company/refs/heads/main/examples/movie-reviews-search-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/new-york-times-company/refs/heads/main/examples/times-tags-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/new-york-times-company/refs/heads/main/examples/semantic-concept-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/new-york-times-company/refs/heads/main/examples/geo-query-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/new-york-times-company/refs/heads/main/examples/community-comments-example.json
🔗
Status
https://developer.nytimes.com/docs/community-api-product/1/overview

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/new-york-times-company-most-popular-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

new-york-times-company-most-popular-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 2.0.0
  title: Archive Most Popular API
  description: 'The Archive API returns an array of NYT articles for a given month, going back to 1851.  Its response fields are the same as the Article Search API. The Archive API is very useful if you want to build your own database of NYT article metadata. You simply pass the API the year and month and it returns a JSON object with all articles for that month.  The response size can be large (~20mb).


    ```

    /{year}/{month}.json

    ```


    ## Example Call

    ```

    https://api.nytimes.com/svc/archive/v1/2019/1.json?api-key=yourkey

    ```

    '
servers:
- url: https://api.nytimes.com/svc/archive/v1
security:
- apikey: []
tags:
- name: Most Popular
paths:
  /emailed/{period}.json:
    get:
      summary: Most emailed articles on NYTimes.com.
      description: 'Returns an array of the most emailed articles on NYTimes.com for specified period of time (1 day, 7 days, or 30 days).

        '
      parameters:
      - name: period
        in: path
        description: 'Time period: 1, 7, or 30 days.'
        required: true
        schema:
          type: integer
          enum:
          - 1
          - 7
          - 30
          default: 1
      tags:
      - Most Popular
      responses:
        '200':
          description: An array of articles.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  copyright:
                    type: string
                  num_results:
                    type: integer
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/EmailedArticle'
        '401':
          description: Unauthorized request.  Make sure api-key is set.
        '429':
          description: Too many requests.  You reached your per minute or per day rate limit.
  /shared/{period}.json:
    get:
      summary: Most shared articles on NYTimes.com.
      description: 'Returns an array of the most shared articles on NYTimes.com for specified period of time (1 day, 7 days, or 30 days).

        '
      parameters:
      - name: period
        in: path
        description: 'Time period: 1, 7, or 30 days.'
        required: true
        schema:
          type: integer
          enum:
          - 1
          - 7
          - 30
          default: 1
      tags:
      - Most Popular
      responses:
        '200':
          description: An array of articles.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  copyright:
                    type: string
                  num_results:
                    type: integer
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/SharedArticle'
        '401':
          description: Unauthorized request.  Make sure api-key is set.
        '429':
          description: Too many requests.  You reached your per minute or per day rate limit.
  /shared/{period}/{share_type}.json:
    get:
      summary: Most shared articles on NYTimes.com of specified share type.
      description: 'Returns an array of the most shared articles by share type on NYTimes.com for specified period of time (1 day, 7 days, or 30 days).

        '
      parameters:
      - name: period
        in: path
        description: 'Time period: 1, 7, or 30 days.'
        required: true
        schema:
          type: integer
          enum:
          - 1
          - 7
          - 30
          default: 1
      - name: share_type
        in: path
        description: 'Share type: email, facebook, or twitter.'
        required: true
        schema:
          type: string
          enum:
          - email
          - facebook
          - twitter
          default: facebook
      tags:
      - Most Popular
      responses:
        '200':
          description: An array of articles.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  copyright:
                    type: string
                  num_results:
                    type: integer
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/SharedArticle'
        '401':
          description: Unauthorized request.  Make sure api-key is set.
        '429':
          description: Too many requests.  You reached your per minute or per day rate limit.
  /viewed/{period}.json:
    get:
      summary: Most viewed articles on NYTimes.com.
      description: 'Returns an array of the most viewed articles on NYTimes.com for specified period of time (1 day, 7 days, or 30 days).

        '
      parameters:
      - name: period
        in: path
        description: 'Time period: 1, 7, or 30 days.'
        required: true
        schema:
          type: integer
          enum:
          - 1
          - 7
          - 30
          default: 1
      tags:
      - Most Popular
      responses:
        '200':
          description: An array of articles.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  copyright:
                    type: string
                  num_results:
                    type: integer
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/ViewedArticle'
        '401':
          description: Unauthorized request.  Make sure api-key is set.
        '429':
          description: Too many requests.  You reached your per minute or per day rate limit.
components:
  schemas:
    EmailedArticle:
      type: object
      properties:
        url:
          type: string
        adx_keywords:
          type: string
        subsection:
          type: string
        email_count:
          type: integer
        count_type:
          type: string
        column:
          type: string
        eta_id:
          type: integer
        section:
          type: string
        id:
          type: integer
        asset_id:
          type: integer
        nytdsection:
          type: string
        byline:
          type: string
        type:
          type: string
        title:
          type: string
        abstract:
          type: string
        published_date:
          type: string
        source:
          type: string
        updated:
          type: string
        des_facet:
          type: array
          items:
            type: string
        org_facet:
          type: array
          items:
            type: string
        per_facet:
          type: array
          items:
            type: string
        geo_facet:
          type: array
          items:
            type: string
        media:
          type: array
          items:
            $ref: '#/components/schemas/Media'
        uri:
          type: string
    SharedArticle:
      type: object
      properties:
        url:
          type: string
        adx_keywords:
          type: string
        subsection:
          type: string
        share_count:
          type: integer
        count_type:
          type: string
        column:
          type: string
        eta_id:
          type: integer
        section:
          type: string
        id:
          type: integer
        asset_id:
          type: integer
        nytdsection:
          type: string
        byline:
          type: string
        type:
          type: string
        title:
          type: string
        abstract:
          type: string
        published_date:
          type: string
        source:
          type: string
        updated:
          type: string
        des_facet:
          type: array
          items:
            type: string
        org_facet:
          type: array
          items:
            type: string
        per_facet:
          type: array
          items:
            type: string
        geo_facet:
          type: array
          items:
            type: string
        media:
          type: array
          items:
            $ref: '#/components/schemas/Media'
        uri:
          type: string
    ViewedArticle:
      type: object
      properties:
        url:
          type: string
        adx_keywords:
          type: string
        column:
          type: string
        section:
          type: string
        byline:
          type: string
        type:
          type: string
        title:
          type: string
        abstract:
          type: string
        published_date:
          type: string
        source:
          type: string
        id:
          type: integer
        asset_id:
          type: integer
        views:
          type: integer
        des_facet:
          type: array
          items:
            type: string
        org_facet:
          type: array
          items:
            type: string
        per_facet:
          type: array
          items:
            type: string
        geo_facet:
          type: array
          items:
            type: string
        media:
          type: array
          items:
            $ref: '#/components/schemas/Media'
        uri:
          type: string
    Media:
      type: object
      properties:
        type:
          type: string
        subtype:
          type: string
        caption:
          type: string
        copyright:
          type: string
        approved_for_syndication:
          type: boolean
        media-metadata:
          type: array
          items:
            $ref: '#/components/schemas/MediaMetadata'
    MediaMetadata:
      type: object
      properties:
        url:
          type: string
        format:
          type: string
        height:
          type: integer
        width:
          type: integer
  securitySchemes:
    apikey:
      type: apiKey
      name: api-key
      in: query