> ## Documentation Index
> Fetch the complete documentation index at: https://docs.prequel.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Destinations

> Where Prequel Import delivers your data.

A destination is an endpoint you configure in Prequel to receive imported records. Prequel supports multiple destination types depending on your delivery needs.

Every destination requires a `record_schema`: a JSON Schema draft-07 document that defines the shape of records Prequel will deliver. This defines the contract between Prequel and your endpoint.

## Destination types

| Type                                                         | Best for                  | Description                                            |
| ------------------------------------------------------------ | ------------------------- | ------------------------------------------------------ |
| [`webhook_batch`](/import/destination-specs/webhook-batch)   | High volume (recommended) | Delivers multiple records per request.                 |
| [`webhook_record`](/import/destination-specs/webhook-record) | Lower volume              | Delivers one record per request. Simpler to implement. |
| [`kafka_topic`](/import/destination-specs/kafka-topic)       | Streaming (coming soon)   | Delivers records directly to a Kafka topic.            |

For the full destination configuration reference and a complete example, see [Create Destination](/import/import-api/overview).
