People Data Labs Subscription API

The Subscription API from People Data Labs — 5 operations for managing webhook subscriptions: create, list, retrieve, update and delete the HTTPS target URL that People Data Labs pushes batched person-update notifications to. Webhook access itself is limited to enterprise API and Data License customers.

Operations 5

GET /v5/subscription /v5/subscription
POST /v5/subscription /v5/subscription
GET /v5/subscription/{subscription_id} /subscription/
DELETE /v5/subscription/{subscription_id} /v5/subscription/
PUT /v5/subscription/{subscription_id} /v5/subscription/

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/peopledatalabs-subscription-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

peopledatalabs-subscription-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: People Data Labs API
  title: api.peopledatalabs.com Subscription API
  version: '5.0'
servers:
- url: https://api.peopledatalabs.com
tags:
- name: Subscription
  description: 'Webhook subscription management: create, list, retrieve, update and delete the HTTPS target URLs People Data Labs pushes person-update events to.'
paths:
  /v5/subscription:
    get:
      tags:
      - Subscription
      summary: /v5/subscription
      description: Retrieves a list of subscriptions.
      security:
      - APIKeyHeader: []
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SubscriptionResponse'
          description: All existing subscriptions
    post:
      tags:
      - Subscription
      summary: /v5/subscription
      description: Creates a new subscription.
      security:
      - APIKeyHeader: []
      requestBody:
        description: A subscription object.
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SubscriptionRequest'
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SubscriptionResponse'
          description: The created subscription
  /v5/subscription/{subscription_id}:
    get:
      tags:
      - Subscription
      summary: /subscription/<subscription_id>
      description: Retrieves a subscription based on object ID.
      security:
      - APIKeyHeader: []
      parameters:
      - name: subscription_id
        in: path
        description: The ID of the subscription
        schema:
          type: string
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SubscriptionResponse'
          description: The requested subscription
    delete:
      tags:
      - Subscription
      summary: /v5/subscription/<subscription_id>
      description: Deletes a subscription.
      security:
      - APIKeyHeader: []
      parameters:
      - name: subscription_id
        in: path
        description: The ID of the subscription.
        schema:
          type: string
        required: true
      responses:
        '204':
          description: Deleted subscription
    put:
      tags:
      - Subscription
      summary: /v5/subscription/<subscription_id>
      description: Updates a subscription.
      security:
      - APIKeyHeader: []
      parameters:
      - name: subscription_id
        in: path
        description: The ID of the subscription.
        schema:
          type: string
        required: true
      requestBody:
        description: A subscription object.
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SubscriptionRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SubscriptionResponse'
          description: The updated subscription
components:
  schemas:
    SubscriptionResponse:
      type: object
      properties:
        event_type:
          type: string
          description: The type of event to subscribe to
        target_url:
          type: string
          format: url
          description: The URL the subscription will be sent to; scheme must be https
          example: https://callbackapi.example.com/endpoint
        headers:
          type: object
          description: Custom headers
          example:
            x-custom-header: very-secure-value
          additionalProperties:
            type: string
        created_timestamp:
          type: string
          format: date-time
          description: The date and time when the subscription was created
        id:
          type: string
          description: The unique identifier of the subscription
        status:
          type: string
          description: The status of the subscription
        last_verified_timestamp:
          type: string
          format: date-time
          description: Timestamp of most recent target URL verification
      required:
      - created_timestamp
      - last_verified_timestamp
      - target_url
      - event_type
      - id
      - status
      additionalProperties: false
    SubscriptionRequest:
      type: object
      properties:
        event_type:
          type: string
          description: The type of event to subscribe to
        target_url:
          type: string
          format: url
          description: The URL the subscription will be sent to; scheme must be https
          example: https://callbackapi.example.com/endpoint
        headers:
          type: object
          description: Custom headers
          example:
            x-custom-header: very-secure-value
          additionalProperties:
            type: string
        status:
          type: string
          description: The status of the subscription
      required:
      - target_url
      - event_type
      additionalProperties: false
  securitySchemes:
    APIKeyHeader:
      in: header
      name: X-API-Key
      type: apiKey