> **stripe-docs** — chapter 5 of 7 in [stripe/ai](https://skillsdocs.com/stripe/ai).
>
> Book (all chapters, one file): https://skillsdocs.com/stripe/ai.md
> Machine manifest: https://skillsdocs.com/stripe/ai/.well-known/agent-skills/index.json
> Install the book: `npx skills add stripe/ai`
> Upstream: https://github.com/stripe/ai/blob/main/skills/stripe-docs/SKILL.md @ `main`
> Raw bytes, no header: https://raw.githubusercontent.com/stripe/ai/main/skills/stripe-docs/SKILL.md
> Base for relative paths: https://raw.githubusercontent.com/stripe/ai/main/skills/stripe-docs/
> Licence: MIT — https://spdx.org/licenses/MIT.html
>
> Content © its authors, served unmodified. Takedown: https://github.com/DreambaseAI/skillsdocs/issues/new?labels=takedown&title=Takedown+request

<!-- Verbatim upstream SKILL.md follows, YAML frontmatter included. -->

---
name: stripe-docs
description: >-
  Use when the user or agent needs to read, search, or look up Stripe
  documentation or API reference. Prefer this over curl or WebFetch for any
  docs.stripe.com content.
metadata:
  short-description: Read and search Stripe documentation from the terminal
allowed-tools:
  - Bash(stripe docs *)

---

Use `stripe docs` instead of fetching [docs.stripe.com](https://docs.stripe.com/.md) content directly with `curl` or `WebFetch`.

- Fetches Markdown automatically
- Purpose-built for agents and terminal workflows

## Read a page by its web path

```bash
stripe docs /payments
```

## Search documentation by keyword

```bash
stripe docs search "payment intents"
```

## Look up API reference

```bash
# By resource name
stripe docs api product

# By HTTP method and path
stripe docs api GET /v1/products

# By event type
stripe docs api product.created
```
