← All skills

Webhook Inbox

Free

Your agent has no server to receive a callback; this gives it a temporary URL and captures the requests.

Developer Tools

Spin up a throwaway webhook inbox to capture incoming HTTP requests. Get a unique capture URL, point any service or tool at it, then poll the inbox to read back exactly what arrived, including headers and body. Useful for testing integrations, inspecting callbacks, and debugging webhook payloads.

Use when

You need a URL to receive webhooks or callbacks and read them back.

Not for

Sending a request yourself, or scheduling an outgoing call (use schedule).

What you can do

Each is a sub-skill of Webhook Inbox; the router picks the right one for your request.

What you get back

information

Run it

Skills run through one gateway with your Faro token. Hand it an intent in plain language; Faro routes to the right sub-skill, runs it, and bills per call.

curl -X POST "https://skill.askfaro.com/skills/hooks/run" \
  -H "Authorization: Bearer $FARO_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"intent":{"prompt":"Give me a webhook URL I can use to receive Stripe callbacks."}}'

Example requests

  • Give me a webhook URL I can use to receive Stripe callbacks.
  • Check what came into my webhook inbox.