Credentially Subscriptions API

API for managing webhook callback subscriptions

Operations 3

GET /subscriptions Get all webhook subscriptions for this org #
POST /subscriptions Create a new webhook subscription #
DELETE /subscriptions/{id} Delete a webhook 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/credentially-subscriptions-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

credentially-subscriptions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Credentially Public Compliance-packages Subscriptions API
  description: Public API Proxy with Rate Limiting and Audit
  version: 2.0.0
servers:
- url: https://app.credentially.io/gateway
  description: Generated server url
tags:
- name: Subscriptions
  description: API for managing webhook callback subscriptions
paths:
  /subscriptions:
    get:
      tags:
      - Subscriptions
      summary: Get all webhook subscriptions for this org
      operationId: getSubscriptions
      responses:
        '200':
          description: List of subscriptions retrieved successfully
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SubscriptionResponse'
      security:
      - bearer-key: []
    post:
      tags:
      - Subscriptions
      summary: Create a new webhook subscription
      operationId: createSubscription
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateSubscriptionRequest'
        required: true
      responses:
        '201':
          description: Subscription created successfully
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SubscriptionResponse'
        '400':
          description: Invalid input
      security:
      - bearer-key: []
  /subscriptions/{id}:
    delete:
      tags:
      - Subscriptions
      summary: Delete a webhook subscription
      operationId: deleteSubscription
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '204':
          description: Subscription deleted successfully
        '404':
          description: Subscription not found
      security:
      - bearer-key: []
components:
  schemas:
    CreateSubscriptionRequest:
      type: object
      description: Request object for creating a subscription
      properties:
        callbackUrl:
          type: string
          description: The URL to receive webhook events
          example: https://api.example.com/callbacks
          maxLength: 500
          minLength: 0
          pattern: ^https?://.+
        webhookName:
          type: string
          description: Identifiable name for this webhook subscription
          maxLength: 50
          minLength: 3
          pattern: ^[a-zA-Z0-9_-]+$
        password:
          type: string
          description: Password for Basic Auth on the callback URL
          maxLength: 50
          minLength: 8
        eventTypes:
          type: array
          description: Set of event types to subscribe to
          example:
          - PROFILE_COMPLIANCE_STATUS_CHANGED
          - PROFILE_DBS_STATUS_CHANGED
          items:
            type: string
            minLength: 1
          minItems: 1
          uniqueItems: true
      required:
      - callbackUrl
      - eventTypes
      - password
      - webhookName
    SubscriptionResponse:
      type: object
      description: Webhook subscription returned from the API
      properties:
        id:
          type: string
          format: uuid
        callbackUrl:
          type: string
        webhookName:
          type: string
        eventTypes:
          type: array
          items:
            type: string
        createdAt:
          type: string
          format: date-time
  securitySchemes:
    bearer-key:
      type: http
      scheme: bearer
      bearerFormat: JWT