# Shovels Tags - Permit Classification Tag Listing

> Shovels Tags - Permit Classification Tag Listing is a paid API for AI agents from www.stable-shovels.dev, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Lists all available permit classification tags and their descriptions that can be used as filter values when querying permit data.

## Facts

- Endpoint: POST https://www.stable-shovels.dev/api/tags
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/shovels-tags-permit-classification-tag-listing-a868a88b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SiJ8dxpQZDWImC3sVQYyf

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability shovels-tags-permit-classification-tag-listing-a868a88b -d '<json body>'
```

Example prompt: Show me all the permit classification tags available in Shovels so I can figure out which tag values to use when filtering permit searches — return up to 100 tags per page.

## When to prefer this

Use this endpoint when you need to discover or enumerate all valid permit_tags filter values before constructing permit queries against Shovels data. This is a prerequisite lookup step — call it first to know what tag values are supported, then use those tags to filter actual permit searches.

## Known failure modes

- Invalid cursor string causes pagination error
- Size parameter outside 1-100 range returns validation error
- Unauthenticated or unpaid request (x402 payment required) returns 402 Payment Required
- Empty result set if no tags exist in the system
- Network timeout for large page sizes

## How this service works

Shovels Tags — list all available permit classification tags (and their descriptions) for use as `permit_tags` filters.

## Output

A paginated list of permit classification tag objects, each containing a tag identifier/name and a human-readable description of what kind of permits it classifies. Also includes a next_cursor value for fetching subsequent pages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "size": {
   "type": "integer",
   "maximum": 100,
   "minimum": 1,
   "description": "Records to return per page (1–100, default 50). Determines the price — each record returned costs one credit."
  },
  "cursor": {
   "type": "string",
   "description": "Pagination cursor — pass the `next_cursor` from a prior page."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/shovels-tags-permit-classification-tag-listing-a868a88b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.stable-shovels.dev](https://www.zero.xyz/host/www.stable-shovels.dev/llms.txt)
