# Webhook Inbox

> Skill `hooks` on Faro. Free. 2 sub-skills.

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.

**Category:** Developer Tools  
**Tags:** webhook, inbox, callback, http, receive  
**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).  
**Returns:** information

## How to run
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. Raw tools are internal plumbing and are not directly callable.

```
POST https://skill.askfaro.com/skills/hooks/run
Authorization: Bearer faro_<your_key>
Content-Type: application/json

{"intent":{"prompt":"Give me a webhook URL I can use to receive Stripe callbacks."}}
```

Or from the CLI:

```bash
pip install askfaro-cli && askfaro auth login
askfaro run hooks "Give me a webhook URL I can use to receive Stripe callbacks."
```

Full run reference: https://askfaro.com/llms/run.md — Agent recipe: https://askfaro.com/llms/skill.md

## Example requests

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

## Sub-skills

### Create an inbox

Creates a webhook inbox and returns its capture URL.

**Cost:** Free

**Details:** https://askfaro.com/llms/skills/hooks/create_inbox.md

---

### Poll an inbox

Returns the requests captured by an inbox.

**Cost:** Free

**Details:** https://askfaro.com/llms/skills/hooks/poll.md

---

---
On the web: https://askfaro.com/search/hooks