---
title: "Get webhook with token"
method: GET
path: "/webhooks/{webhook_id}/{token}"
tags: ["Webhooks"]
---

# Get webhook with token

`GET /webhooks/{webhook_id}/{token}`

Retrieves detailed information about a specific webhook using its ID and token. No authentication required as the token serves as the credential. Returns the webhook object without creator user data.

## Path parameters

- `webhook_id` string, snowflake, required
- `token` string, required

## Response `200`

Success

- WebhookTokenResponse
  - `id` string, required — The unique identifier (snowflake) for the webhook
  - `guild_id` string, required — The ID of the guild this webhook belongs to
  - `channel_id` string, required — The ID of the channel this webhook posts to
  - `name` string, required — The display name of the webhook
  - `avatar` string, nullable — The hash of the webhook avatar image
  - `token` string, required — The secure token used to execute the webhook

## Other responses

- `400` — Bad Request - The request was malformed or contained invalid data
- `429` — Too Many Requests - You are being rate limited
- `500` — Internal Server Error - An unexpected error occurred

---

[API](https://skmtc.dev/fluxer/apis/fluxer-api.md) · [All operations](https://skmtc.dev/fluxer/apis/fluxer-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/fluxer/fluxer-api/revisions/d9c706133cc5/schema)
