Skip to main content
GET
/
webhooks
List webhooks
curl --request GET \
  --url https://app.tryordinal.com/api/v1/webhooks \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "550e8400-e29b-41d4-a716-446655440900",
    "name": "CRM Sync",
    "url": "https://example.com/webhooks/ordinal",
    "description": "Sync published posts to our CRM",
    "headers": {
      "X-Custom-Header": "value"
    },
    "topics": [
      "post.published",
      "post.archived"
    ],
    "createdAt": "2026-01-15T10:00:00.000Z",
    "createdBy": {
      "id": "550e8400-e29b-41d4-a716-446655440010",
      "email": "john@acme.com",
      "firstName": "John",
      "lastName": "Doe"
    }
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.tryordinal.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication. Generate an API key from your workspace settings.

Response

List of webhooks

id
string<uuid>
name
string
url
string<uri>
description
string | null
headers
object
topics
string[]
createdAt
string<date-time>
createdBy
object

User who created the webhook