1. Webhooks
BeatAPI
  • Quick Start
  • BeatAPI Realtime Video API
  • Music Video API
    • Create Video
      • Create Music Video
    • Advanced Editing
      • Edit Shot
      • Get Shot Media
      • Compose Video
  • Ecommerce Video API
    • Create Ecommerce Video
  • Reference
    • API Overview
      • List launch workflows
    • Task Status
      • Poll task status
    • Usage & Limits
      • Get account usage and concurrency
    • Upload Files
      • Upload a file for workflow inputs
    • Webhooks
      • List webhook endpoints
        GET
      • Create a webhook endpoint
        POST
      • Get a webhook endpoint
        GET
      • Update a webhook endpoint
        PATCH
      • Delete a webhook endpoint
        DELETE
  • Realtime Video API
    • Create a realtime browser session
    • Get a realtime session
    • Close a realtime session
  1. Webhooks

Get a webhook endpoint

GET
/v1/webhooks/{id}

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Responses

🟢200
application/json
Webhook endpoint
Bodyapplication/json

🟠404
🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.beatapi.io/v1/webhooks/wh_9aBcD' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - 成功示例
{
    "data": {
        "id": "wh_9aBcD",
        "object": "webhook_endpoint",
        "url": "https://example.com/beatapi-webhook",
        "description": "Production webhook",
        "events": [
            "task.succeeded",
            "task.failed"
        ],
        "status": "active",
        "secret": "whsec_example_masked",
        "created_at": 1782210000,
        "updated_at": 1782210000
    }
}
Modified at 2026-07-31 15:10:04
Previous
Create a webhook endpoint
Next
Update a webhook endpoint
Built with