Google Indexing urlNotifications API

The urlNotifications API from Google Indexing — 1 operation(s) for urlnotifications.

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/google-indexing-urlnotifications-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 email required.

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

OpenAPI Specification

google-indexing-urlnotifications-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Google Indexing urlNotifications API
  description: The Google Indexing API allows site owners to notify Google when pages are added or removed. It enables direct notification to Google to crawl pages, leading to fresher content in search results. It is primarily intended for websites with job postings or livestream structured data.
  version: 3.0.0
  contact:
    name: Google
    url: https://developers.google.com/search/apis/indexing-api/v3/quickstart
servers:
- url: https://indexing.googleapis.com/v3
security:
- OAuth2: []
tags:
- name: urlNotifications
paths:
  /urlNotifications/metadata:
    get:
      operationId: getUrlNotificationMetadata
      summary: Google Indexing Get URL Notification Metadata
      description: Gets metadata about a URL, including the latest notification timestamps and type.
      parameters:
      - name: url
        in: query
        required: true
        description: The URL to get notification metadata for.
        schema:
          type: string
          format: uri
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UrlNotificationMetadata'
        '403':
          description: Forbidden
        '404':
          description: Not found
      tags:
      - urlNotifications
components:
  schemas:
    UrlNotification:
      type: object
      required:
      - url
      - type
      properties:
        url:
          type: string
          format: uri
          description: The URL to notify Google about.
        type:
          type: string
          description: The type of notification.
          enum:
          - URL_UPDATED
          - URL_DELETED
        notifyTime:
          type: string
          format: date-time
          description: The time of the notification.
    UrlNotificationMetadata:
      type: object
      properties:
        url:
          type: string
          format: uri
          description: The URL for which metadata is returned.
        latestUpdate:
          $ref: '#/components/schemas/UrlNotification'
        latestRemove:
          $ref: '#/components/schemas/UrlNotification'
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://accounts.google.com/o/oauth2/auth
          tokenUrl: https://oauth2.googleapis.com/token
          scopes:
            https://www.googleapis.com/auth/indexing: Submit URLs to Google indexing