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.
You need a URL to receive webhooks or callbacks and read them back.
Sending a request yourself, or scheduling an outgoing call (use schedule).
Each is a sub-skill of Webhook Inbox; the router picks the right one for your request.
information
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