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.
curl --request GET \
--url https://api.fluxer.app/v1/webhooks/{webhook_id}/{token}{
"id": "<string>",
"guild_id": "<string>",
"channel_id": "<string>",
"name": "<string>",
"token": "<string>",
"avatar": "<string>"
}The ID of the webhook
^(0|[1-9][0-9]*)$The token
Success
The unique identifier (snowflake) for the webhook
^(0|[1-9][0-9]*)$The ID of the guild this webhook belongs to
^(0|[1-9][0-9]*)$The ID of the channel this webhook posts to
^(0|[1-9][0-9]*)$The display name of the webhook
The secure token used to execute the webhook
The hash of the webhook avatar image
curl --request GET \
--url https://api.fluxer.app/v1/webhooks/{webhook_id}/{token}{
"id": "<string>",
"guild_id": "<string>",
"channel_id": "<string>",
"name": "<string>",
"token": "<string>",
"avatar": "<string>"
}