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

# upstash_qstash_endpoint

> Create and manage QStash endpoints.

<RequestExample>
  ```hcl example.tf theme={"system"}
  resource "upstash_qstash_endpoint" "exampleQStashEndpoint" {
    url      = "https://***.***"
    topic_id = resource.upstash_qstash_topic.exampleQstashTopic.topic_id
  }
  ```
</RequestExample>

## Schema

### Required

<ParamField query="topic_id" type="string" required>
  Topic ID that the endpoint is added to
</ParamField>

<ParamField query="url" type="string" required>
  URL of the endpoint
</ParamField>

### Read-Only

<ResponseField name="endpoint_id" type="string">
  Unique QStash endpoint ID
</ResponseField>

<ResponseField name="id" type="string">
  The ID of this resource.
</ResponseField>

<ResponseField name="topic_name" type="string">
  Unique QStash topic name for endpoint
</ResponseField>


## Related topics

- [upstash_qstash_endpoint_data](/docs/devops/terraform/data_sources/upstash_qstash_endpoint_data.md)
- [Create URL Groups and Endpoints](/docs/qstash/howto/url-group-endpoint.md)
- [Remove Endpoints](/docs/qstash/api-reference/url-groups/remove-endpoints.md)
- [URL Groups](/docs/qstash/sdks/ts/examples/url-groups.md)
- [Use as Webhook Receiver](/docs/qstash/howto/webhook.md)
