The Philadelphia Inquirer Sitemaps API

XML sitemaps and sitemap indexes.

Operations 6

GET /arc/outboundfeeds/sitemap-index-2/ Get Sitemap Index #
GET /arc/outboundfeeds/sitemap/latest/ Get Latest URL Sitemap #
GET /arc/outboundfeeds/sitemap/{date}/ Get Daily URL Sitemap #
GET /arc/outboundfeeds/news-sitemap/ Get Google News Sitemap #
GET /arc/outboundfeeds/sitemap-author-page/ Get Author Sitemap #
GET /arc/outboundfeeds/sitemap-restaurant-page/ Get Restaurant Sitemap #

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/philadelphia-inquirer-sitemaps-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

philadelphia-inquirer-sitemaps-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Philadelphia Inquirer Sitemaps API
  version: '1.0'
  summary: XML sitemaps and Google News sitemap for Inquirer.com.
  description: XML sitemap endpoints published by Arc XP for The Philadelphia Inquirer. A sitemap index lists hundreds of daily child sitemaps spanning roughly two years of inquirer.com URLs. A dedicated Google News sitemap exposes the most recent articles using the `http://www.google.com/schemas/sitemap-news/0.9` namespace. Additional sitemaps cover authors and restaurant pages. No authentication is required.
  contact:
    name: The Philadelphia Inquirer
    url: https://www.inquirer.com
servers:
- url: https://www.inquirer.com
  description: Production
tags:
- name: Sitemaps
  description: XML sitemaps and sitemap indexes.
paths:
  /arc/outboundfeeds/sitemap-index-2/:
    get:
      operationId: getSitemapIndex
      summary: Get Sitemap Index
      description: Returns a sitemap index listing daily child sitemaps for roughly two years of inquirer.com content.
      tags:
      - Sitemaps
      parameters:
      - $ref: '#/components/parameters/outputType'
      responses:
        '200':
          description: Sitemap index XML document.
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/SitemapIndex'
  /arc/outboundfeeds/sitemap/latest/:
    get:
      operationId: getLatestSitemap
      summary: Get Latest URL Sitemap
      description: Returns the most recent URL sitemap of articles.
      tags:
      - Sitemaps
      parameters:
      - $ref: '#/components/parameters/outputType'
      responses:
        '200':
          description: URL sitemap XML document.
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/UrlSet'
  /arc/outboundfeeds/sitemap/{date}/:
    get:
      operationId: getDailySitemap
      summary: Get Daily URL Sitemap
      description: Returns the URL sitemap for the specified calendar day.
      tags:
      - Sitemaps
      parameters:
      - name: date
        in: path
        required: true
        description: Calendar day in YYYY-MM-DD format.
        schema:
          type: string
          pattern: ^\d{4}-\d{2}-\d{2}$
          example: 2026-05-22
      - $ref: '#/components/parameters/outputType'
      responses:
        '200':
          description: URL sitemap XML document.
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/UrlSet'
        '404':
          description: No sitemap for the requested date.
  /arc/outboundfeeds/news-sitemap/:
    get:
      operationId: getNewsSitemap
      summary: Get Google News Sitemap
      description: Returns the Google News sitemap of the most recent Inquirer.com articles, using the sitemap-news namespace.
      tags:
      - Sitemaps
      parameters:
      - $ref: '#/components/parameters/outputType'
      responses:
        '200':
          description: Google News sitemap XML document.
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/NewsUrlSet'
  /arc/outboundfeeds/sitemap-author-page/:
    get:
      operationId: getAuthorSitemap
      summary: Get Author Sitemap
      description: Returns a sitemap of Inquirer.com author pages.
      tags:
      - Sitemaps
      responses:
        '200':
          description: Author URL sitemap XML document.
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/UrlSet'
  /arc/outboundfeeds/sitemap-restaurant-page/:
    get:
      operationId: getRestaurantSitemap
      summary: Get Restaurant Sitemap
      description: Returns a sitemap of Inquirer.com restaurant review and guide pages.
      tags:
      - Sitemaps
      responses:
        '200':
          description: Restaurant URL sitemap XML document.
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/UrlSet'
components:
  schemas:
    SitemapUrl:
      type: object
      properties:
        loc:
          type: string
          format: uri
        lastmod:
          type: string
          format: date-time
        changefreq:
          type: string
          enum:
          - always
          - hourly
          - daily
          - weekly
          - monthly
          - yearly
          - never
        priority:
          type: number
          minimum: 0
          maximum: 1
        image:
          type: object
          properties:
            loc:
              type: string
              format: uri
            caption:
              type: string
    NewsUrlSet:
      type: object
      description: A Google News sitemap URL set.
      properties:
        urls:
          type: array
          items:
            type: object
            properties:
              loc:
                type: string
                format: uri
              news:
                type: object
                properties:
                  publication:
                    type: object
                    properties:
                      name:
                        type: string
                        example: The Philadelphia Inquirer
                      language:
                        type: string
                        example: en
                  publication_date:
                    type: string
                    format: date-time
                  title:
                    type: string
    UrlSet:
      type: object
      description: A sitemap URL set.
      properties:
        urls:
          type: array
          items:
            $ref: '#/components/schemas/SitemapUrl'
    SitemapIndex:
      type: object
      description: A sitemap index pointing at child sitemaps.
      properties:
        sitemaps:
          type: array
          items:
            type: object
            properties:
              loc:
                type: string
                format: uri
              lastmod:
                type: string
                format: date
  parameters:
    outputType:
      name: outputType
      in: query
      required: false
      description: Output serialization. Must be `xml` for sitemaps.
      schema:
        type: string
        enum:
        - xml
        default: xml