Skip to main content
GET
/
destinations
/
{id}
Get destination
curl --request GET \
  --url https://api.prequel.co/import/destinations/{id} \
  --header 'X-API-KEY: <api-key>'
{
  "name": "User Ingest Endpoint",
  "type": "webhook_record",
  "record_schema": {},
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "max_records_per_minute": 3000,
  "max_concurrency": 1,
  "kafka_topic": {
    "topic": "customer.user_updates",
    "connection_info": {},
    "auth_method": "<string>"
  }
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

id
string
required

Response

Success

name
string
required
Example:

"User Ingest Endpoint"

type
enum<string>
required
Available options:
webhook_record,
webhook_batch,
kafka_topic
record_schema
object
required

JSON Schema describing the record shape delivered to the destination. Destination record_schema accepts JSON5 input in the product surface, but is represented here as normalized JSON.

id
string<uuid>
required
max_records_per_minute
integer
default:3000
Required range: x >= 1
max_concurrency
integer
default:1
Required range: x >= 1
webhook_record
object
webhook_batch
object
kafka_topic
object

PRD-defined kafka destination configuration. Auth and connection details are intentionally left flexible.