GET volces.com HTTP 2001.3 s6.0 KB$0.000022 captured Aug 7, 2026
volces.com, as data
One API turns any volces.com page into markdown, structured JSON, its link graph or a screenshot, and crawls the whole site the same way. The panel shows the real response we captured.
- Render mode
- Plain HTTP, no browser needed
- Response
- HTTP 200 in 1.3 s
- Page size
- 6.0 KB of markdown, 167 lines
- Fields
- Business Name, Address, Phone, Category and 1 more
- Captured
- Aug 7, 2026
Free balance on signup, no card. This volces.com page cost $0.000022 to fetch.
### GET /agents/services/{service_id}### GET /agents/services### POST /catalog/searchSearch the service catalog. No auth required.## Usage Agreements### POST /usage-agreements/Create a bilateral escrow agreement proposal. Buyer action.Use the SDK or `assets/openapi-subset.json` for the current request schema. Core inputs are seller, quantity, pricing, and the buyer's locally signed agreement authorization fields.### GET /usage-agreements/{agreement_id}### GET /usage-agreements/agents/{agent_id}/agreementsList agreements for an agent.### PUT /usage-agreements/{agreement_id}/acceptAccept a proposed agreement. Seller action.### PUT /usage-agreements/{agreement_id}/rejectReject a proposed agreement. Seller action.### POST /usage-agreements/{agreement_id}/record-usage### POST /usage-agreements/{agreement_id}/cancelCancel agreement. Buyer action.### POST /usage-agreements/{agreement_id}/disputeDispute agreement. Buyer action.### PATCH /usage-agreements/{agreement_id}/deliveryUpdate delivery status and tracking info. Seller action.## Escrow and Settlement### GET /usage-agreements/{agreement_id}/escrow-statusGet current escrow and settlement status.Use this to inspect settlement state, claimable balances, on-chain linkage, and related agreement wallet information.### GET /usage-agreements/{agreement_id}/activation-packageGet the V2 activation payload (terms, nonces, funding options) that the buyer must sign locally before activating escrow.### POST /usage-agreements/{agreement_id}/activate-escrowSubmit a signed V2 activation request (buyer intent signature + funding authorization) to activate the on-chain escrow.**Activation is required.** Without calling this endpoint after acceptance, the agreement stays at `accepted` / `activation_status=ready` and the metered proxy will reject requests. What Spider does on volces.com
Same key, five endpoints. The numbers under a cell were measured on this page.
Page to markdown
Clean text for RAG and LLM context, boilerplate removed. The lane that runs without a key.
1.3 s · $0.000022Page to JSON
Spider reads the page and names the fields. Pass your own schema when you need exact keys.
Rendered capture
Real Chromium, full-page PNG. The same call also returns the rendered HTML.
The call behind the panel
This request produced the response above. Paste it with your key and you get the same bytes.
curl -X POST https://api.spider.cloud/scrape \
-H "Authorization: Bearer $SPIDER_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://skills.volces.com/skills/clawhub/markmcdaniels/.well-known/skills/agent-payment-processor/references/API_REFERENCE.md", "return_format": "markdown"}' from spider import Spider
app = Spider()
params = {"return_format": "markdown"}
page = app.scrape_url("https://skills.volces.com/skills/clawhub/markmcdaniels/.well-known/skills/agent-payment-processor/references/API_REFERENCE.md", params=params)
print(page[0]["content"]) import { Spider } from "@spider-cloud/spider-client";
const app = new Spider();
const [page] = await app.scrapeUrl("https://skills.volces.com/skills/clawhub/markmcdaniels/.well-known/skills/agent-payment-processor/references/API_REFERENCE.md", {
return_format: "markdown",
});
console.log(page.content); What volces.com costs
Multiplied from the measured 6.0 KB page. Estimates round to the cent.
1 GB of transfer costs $1, plus $0.001 per CPU minute, and failed requests cost $0. Crawling daily? The Unlimited plan is a flat monthly rate.
Point this at the rest of volces.com.
The capture above took 1.3 s and cost $0.000022. The same call takes any URL on volces.com.