Webhook API
apideck · Developer Tools
Welcome to the Webhook API. You can use this API to access all Webhook API endpoints. ## Base URL The base URL for all API requests is `https://unify.apideck.com` We also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com` ## Headers Custom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive. | Name
Authentication
Sample Requests
List event logs
Hover any highlighted part to learn what it does
| x-apideck-app-id | example |
curl -X GET "https://api.apis.guru/v2/specs/apideck.com/webhook/9.3.0/webhook/logs?limit=20&cursor=example&filter=example" \ -H "x-apideck-app-id: example"
import requests
params = {
"limit": "20",
"cursor": "example",
"filter": "example"
}
headers = {
"x-apideck-app-id": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/apideck.com/webhook/9.3.0/webhook/logs",
params=params,
headers=headers,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/apideck.com/webhook/9.3.0/webhook/logs');
url.searchParams.set('limit', '20');
url.searchParams.set('cursor', 'example');
url.searchParams.set('filter', 'example');
const response = await fetch(url, {
headers: {
'x-apideck-app-id': 'example'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/apideck.com/webhook/9.3.0/webhook/logs")
q := baseURL.Query()
q.Set("limit", "20")
q.Set("cursor", "example")
q.Set("filter", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
req.Header.Set("x-apideck-app-id", "example")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/apideck.com/webhook/9.3.0/webhook/logs")
uri.query = URI.encode_www_form({
"limit" => "20",
"cursor" => "example",
"filter" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
req["x-apideck-app-id"] = "example"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/apideck.com/webhook/9.3.0/webhook/logs?" . http_build_query([
"limit" => "20",
"cursor" => "example",
"filter" => "example"
]);
$opts = ["http" => [
"method" => "GET",
"header" => implode("\r\n", [
"x-apideck-app-id: example"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));List all webhook subscriptions
Hover any highlighted part to learn what it does
| x-apideck-app-id | example |
curl -X GET "https://api.apis.guru/v2/specs/apideck.com/webhook/9.3.0/webhook/webhooks?limit=20&cursor=example" \ -H "x-apideck-app-id: example"
import requests
params = {
"limit": "20",
"cursor": "example"
}
headers = {
"x-apideck-app-id": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/apideck.com/webhook/9.3.0/webhook/webhooks",
params=params,
headers=headers,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/apideck.com/webhook/9.3.0/webhook/webhooks');
url.searchParams.set('limit', '20');
url.searchParams.set('cursor', 'example');
const response = await fetch(url, {
headers: {
'x-apideck-app-id': 'example'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/apideck.com/webhook/9.3.0/webhook/webhooks")
q := baseURL.Query()
q.Set("limit", "20")
q.Set("cursor", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
req.Header.Set("x-apideck-app-id", "example")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/apideck.com/webhook/9.3.0/webhook/webhooks")
uri.query = URI.encode_www_form({
"limit" => "20",
"cursor" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
req["x-apideck-app-id"] = "example"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/apideck.com/webhook/9.3.0/webhook/webhooks?" . http_build_query([
"limit" => "20",
"cursor" => "example"
]);
$opts = ["http" => [
"method" => "GET",
"header" => implode("\r\n", [
"x-apideck-app-id: example"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Get the webhook subscription details
Hover any highlighted part to learn what it does
| x-apideck-app-id | example |
curl -X GET "https://api.apis.guru/v2/specs/apideck.com/webhook/9.3.0/webhook/webhooks/{id}" \
-H "x-apideck-app-id: example"import requests
headers = {
"x-apideck-app-id": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/apideck.com/webhook/9.3.0/webhook/webhooks/{id}",
headers=headers,
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/apideck.com/webhook/9.3.0/webhook/webhooks/{id}';
const response = await fetch(url, {
headers: {
'x-apideck-app-id': 'example'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/apideck.com/webhook/9.3.0/webhook/webhooks/{id}"
req, _ := http.NewRequest("GET", targetURL, nil)
req.Header.Set("x-apideck-app-id", "example")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/apideck.com/webhook/9.3.0/webhook/webhooks/{id}")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
req["x-apideck-app-id"] = "example"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/apideck.com/webhook/9.3.0/webhook/webhooks/{id}";
$opts = ["http" => [
"method" => "GET",
"header" => implode("\r\n", [
"x-apideck-app-id: example"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Webhook API?
Webhook API is a Developer Tools API. Developers commonly use developer tools APIs for:
- automating code review and quality checks
- integrating CI/CD pipelines and build systems
- managing feature flags and A/B tests
- monitoring errors and application performance
- generating and validating test data
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Webhook API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?