Skip to main content
GET
/
v1
/
webhooks
/
{id}
Get a webhook subscription and its recent deliveries
curl --request GET \
  --url https://api.example.com/v1/webhooks/{id} \
  --header 'X-API-Key: <api-key>'
import requests

url = "https://api.example.com/v1/webhooks/{id}"

headers = {"X-API-Key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};

fetch('https://api.example.com/v1/webhooks/{id}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.example.com/v1/webhooks/{id}",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "X-API-Key: <api-key>"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.example.com/v1/webhooks/{id}"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("X-API-Key", "<api-key>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.example.com/v1/webhooks/{id}")
  .header("X-API-Key", "<api-key>")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.example.com/v1/webhooks/{id}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "webhook": {
    "id": 42,
    "url": "https://partner.example.com/jinko/webhooks",
    "events": [
      "booking.completed",
      "booking.failed"
    ],
    "status": "active",
    "secret_prefix": "whsec_3f…",
    "created_at": "2026-06-02T08:00:00Z",
    "updated_at": "2026-06-02T08:00:00Z"
  },
  "recent_deliveries": [
    {
      "id": 123,
      "event_id": "evt_1234_booking.completed",
      "event_type": "booking.completed",
      "booking_ref": "JNK-A7B3X9",
      "status": "delivered",
      "attempt_count": 1,
      "last_http_status": 200,
      "delivered_at": "<string>",
      "created_at": "<string>"
    }
  ]
}
{
  "error": {
    "code": "BAD_REQUEST",
    "message": "Malformed JSON in request body.",
    "doc_url": "https://docs.gojinko.com/concepts/errors"
  }
}
{
  "error": {
    "code": "AUTH_REQUIRED",
    "message": "Invalid or expired API key.",
    "doc_url": "https://docs.gojinko.com/api-reference/authentication"
  }
}
{
  "error": {
    "code": "BAD_REQUEST",
    "message": "origins: origins is required; trip_type: trip_type is required",
    "doc_url": "https://docs.gojinko.com/concepts/errors"
  }
}
{
  "error": {
    "code": "RATE_LIMITED",
    "message": "Rate limit or quota exceeded.",
    "doc_url": "https://docs.gojinko.com/concepts/errors"
  }
}
{
  "error": {
    "code": "UPSTREAM_ERROR",
    "message": "Upstream travel provider returned an error. Please retry.",
    "doc_url": "https://docs.gojinko.com/concepts/errors"
  }
}
Returns the subscription plus its most recent delivery attempts (status, HTTP code, timestamps), useful for debugging an endpoint that isn’t receiving events.

Authorizations

X-API-Key
string
header
required

Path Parameters

id
string
required
Example:

"42"

Response

Webhook subscription + recent deliveries

webhook
object
required
recent_deliveries
object[]