# Toll402 Business Deep Profile

> Toll402 Business Deep Profile is a paid API for AI agents from toll402.dev, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Crawls up to 5 pages of a business's own website and returns a structured machine-readable profile including hours, services, prices, booking channels, payments, languages, and social links.

## Facts

- Endpoint: GET https://toll402.dev/v1/biz/details
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/toll402-business-deep-profile-a8f91096
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zQ0lqd5wDVD-Wpg1c99t3

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 toll402-business-deep-profile-a8f91096
```

Example prompt: Pull the full business profile for the coffee shop I found earlier — grab their hours, services, prices, and booking options directly from their website using business ID biz_abc123.

## When to prefer this

Use this endpoint when you need first-party, authoritative data about a specific business — sourced directly from their own website rather than aggregators like Yelp or Google. Prefer it over generic web scraping when you need structured fields (hours, prices, booking) in a consistent machine-readable format. Ideal after a business_search step when you have a business ID and need deep operational details. The 30-day cache makes repeat lookups cheap; use force=true only when freshness is critical.

## Known failure modes

- Business ID not found or invalid — returns error indicating unknown business
- Website is inaccessible or returns non-200 responses — crawl fails with connectivity error
- Business website has no machine-parseable content (e.g. fully JavaScript-rendered with no fallback) — partial or empty profile returned
- Cached profile is stale but force=false — returns cached data that may be outdated
- Rate limiting or bot-blocking by the business website — crawl blocked, partial data returned

## How this service works

Deep profile of a business from its OWN website: crawls up to 5 relevant pages (menu, services, prices, hours, contact, booking) and returns a machine-readable profile — summary, hours (OSM syntax), services with prices, booking channels, payments, languages, social links. First-party data only, cached 30 days per business (force=true re-crawls).

## Output

A structured JSON profile containing: a plain-language business summary, opening hours in OSM syntax, a list of services with associated prices, available booking channels (phone, online, app, etc.), accepted payment methods, languages spoken, and social media links — all sourced exclusively from the business's own website pages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "maxLength": 120,
       "description": "Business id from business_search"
      },
      "force": {
       "type": "boolean",
       "default": false,
       "description": "Re-crawl even if a fresh (≤30 days) profile is cached"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ms": {
       "type": "integer"
      },
      "ok": {
       "type": "boolean"
      },
      "tool": {
       "type": "string"
      },
      "result": {
       "type": "object",
       "properties": {
        "cached": {
         "type": "boolean"
        },
        "business": {
         "type": "object",
         "properties": {
          "id": {
           "type": "string"
          },
          "name": {
           "type": "string"
          },
          "verification": {
           "type": "object",
           "properties": {
            "level": {
             "type": "string"
            },
            "score": {
             "type": "integer"
            }
           }
          }
         }
        },
        "enrichment": {
         "type": "object",
         "properties": {
          "source": {
           "type": "string"
          },
          "booking": {
           "type": "object",
           "properties": {
            "email": {
             "type": "string"
            },
            "phone": {
             "type": "string"
            }
           }
          },
          "costUsd": {
           "type": "number"
          },
          "summary": {
           "type": "string"
          },
          "pagesCrawled": {
           "type": "array",
           "items": {
            "type": "string"
           }
          }
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cached": false,
  "business": {
   "id": "wd:Q180",
   "name": "Wikimedia Foundation",
   "verification": {
    "level": "verified",
    "score": 80
   }
  },
  "enrichment": {
   "source": "own_website",
   "booking": {
    "email": "info@wikimedia.org",
    "phone": "+1-415-839-6885"
   },
   "costUsd": 0.025,
   "summary": "…",
   "pagesCrawled": [
    "https://wikimediafoundation.org/",
    "https://wikimediafoundation.org/contact/"
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/toll402-business-deep-profile-a8f91096/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from toll402.dev](https://www.zero.xyz/host/toll402.dev/llms.txt)
