NetIntel
Network & web intelligence API for AI agents — 112 endpoints, pay-per-call via x402. No API keys, no subscriptions, no rate limits.
The wallet the 402 directs payment to. Its whole payment record — every payer, every chain — is on the merchant page.
Asset 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913
The payTo wallet does not resolve to a registered ERC-8004 agent. That is not a verdict on the service — most of the catalog is unregistered.
Live 402 challenge
Captured by the enrichment pass, not read just now. Prices can change — always read the 402 the endpoint answers with.
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xdaDc335482AD545296Fd7b28518A251fFCbEb9Df",
"amount": "20000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
},
{
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"extra": {
"feePayer": "GVJJ7rdGiXr5xaYbRwRbjfaJL7fmwRygFi1H6aGqDveb"
},
"payTo": "8FVeybWnB4dYrxTuPK7WzFZNAiEcFVaDLFnKpRwVGr5s",
"amount": "20000",
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"maxTimeoutSeconds": 300
}
],
"resource": {
"url": "https://netintel.dev/crypto/ohlc",
"tags": [
"ohlc",
"candles",
"price history",
"bitcoin history",
"backtest data"
],
"iconUrl": "https://netintel.dev/favicon.png",
"mimeType": "application/json",
"description": "Historical OHLC candles for any major crypto asset — hourly or daily, up to 300 candles, with period stats (change %, high, low) — from Coinbase Exchange with Kraken fallback, no API key. Also a price-at-date mode: pass date=YYYY-MM-DD for that day's candle and close. USD, EUR, or GBP quotes; 5min cache.",
"serviceName": "NetIntel"
},
"extensions": {
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {
"days": 7,
"symbol": "BTC",
"interval": "1d"
}
},
"output": {
"type": "json",
"example": {
"vs": "USD",
"end": "2026-08-01",
"stale": false,
"start": "2026-07-26",
"stats": {
"open": 64295.61,
"close": 62445.14,
"avg_volume": 5791.88,
"change_pct": -2.88,
"period_low": 62209.81,
"period_high": 65705.08
},
"source": "coinbase",
"symbol": "BTC",
"candles": [
{
"low": 64229.6,
"high": 65511.36,
"open": 64295.61,
"time": "2026-07-26T00:00:00.000Z",
"close": 65341.07,
"volume": 2390.56790196
},
{
"low": 63545,
"high": 65705.08,
"open": 65341.07,
"time": "2026-07-27T00:00:00.000Z",
"close": 63694.43,
"volume": 5069.45269918
},
{
"low": 62645.39,
"high": 64041.02,
"open": 63693.44,
"time": "2026-07-28T00:00:00.000Z",
"close": 63847.12,
"volume": 6232.18054403
},
{
"low": 63194.45,
"high": 64665.3,
"open": 63847.12,
"time": "2026-07-29T00:00:00.000Z",
"close": 63896.14,
"volume": 8092.70552294
},
{
"low": 63502.91,
"high": 65118.08,
"open": 63896.14,
"time": "2026-07-30T00:00:00.000Z",
"close": 64721.9,
"volume": 8025.87127027
},
{
"low": 62358.96,
"high": 65360,
"open": 64721.9,
"time": "2026-07-31T00:00:00.000Z",
"close": 62825.9,
"volume": 8260.37090197
},
{
"low": 62209.81,
"high": 63093,
"open": 62826.69,
"time": "2026-08-01T00:00:00.000Z",
"close": 62445.14,
"volume": 2472.01120363
}
],
"findings": [],
"interval": "1d",
"candle_count": 7,
"cache_age_seconds": 0
}
}
},
"schema": {
"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",
"properties": {
"vs": {
"type": "string",
"description": "Quote currency: USD (default), EUR or GBP. Aliases: currency, fiat, vs_currency"
},
"date": {
"type": "string",
"description": "YYYY-MM-DD price-at-date mode: that day's single daily candle + its close as price. Mutually exclusive with days/limit"
},
"days": {
"type": "number",
"description": "Lookback window, default 30. Max 300 for 1d, 12 for 1h (300 candles). Alias: period"
},
"limit": {
"type": "number",
"description": "Number of most-recent candles (the usual candle-API param). Capped at 288 for 1h, 300 for 1d. Aliases: count, candles. Use instead of days."
},
"symbol": {
"type": "string",
"description": "One ticker or full name (\"BTC\" or \"bitcoin\"); a leading $ is fine. Aliases: coin, ticker, asset"
},
"interval": {
"type": "string",
"description": "1h or 1d (default 1d). hour/hourly and day/daily accepted. Aliases: granularity, timeframe"
}
}
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"properties": {
"vs": {
"type": "string"
},
"end": {
"type": "string"
},
"price": {
"type": [
"number",
"null"
]
},
"stale": {
"type": "boolean"
},
"start": {
"type": "string"
},
"stats": {
"type": "object",
"properties": {
"open": {
"type": "number"
},
"close": {
"type": "number"
},
"avg_volume": {
"type": "number"
},
"change_pct": {
"type": [
"number",
"null"
]
},
"period_low": {
"type": "number"
},
"period_high": {
"type": "number"
}
}
},
"source": {
"type": "string",
"description": "coinbase | kraken"
},
"symbol": {
"type": "string"
},
"candles": {
"type": "array",
"items": {
"type": "object",
"properties": {
"low": {
"type": "number"
},
"high": {
"type": "number"
},
"open": {
"type": "number"
},
"time": {
"type": "string"
},
"close": {
"type": "number"
},
"volume": {
"type": "number"
}
}
}
},
"findings": {
"type": "array"
},
"interval": {
"type": "string"
},
"candle_count": {
"type": "number"
},
"cache_age_seconds": {
"type": "number"
}
}
}
}
}
}
}
}
},
"x402Version": 2
}Accepts
The payment requirements as published to the catalog. Read the live 402 before paying — a price here is a claim, not a quote.
Pay 0.02 USDC on Base to 0xdaDc…Eb9Df. The signed payment is good for 5 minutes.
- Paid to
- 0xdaDc…Eb9Df
- USD Coin contract
- 0x8335…02913
- Payment window
- 5 minutes
- As published
- 20000 smallest units
That figure is in the token’s smallest units. Roundhouse does not hold this contract’s decimals, so it is shown as published rather than converted.
- Paid to
- 8FVeyb…VGr5s
- Token contract
- EPjFWd…TDt1v
- Payment window
- 5 minutes
The catalog’s raw entry
[
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xdaDc335482AD545296Fd7b28518A251fFCbEb9Df",
"amount": "20000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
},
{
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"extra": {
"feePayer": "BFK9TLC3edb13K6v4YyH3DwPb5DSUpkWvb7XnqCL9b4F"
},
"payTo": "8FVeybWnB4dYrxTuPK7WzFZNAiEcFVaDLFnKpRwVGr5s",
"amount": "20000",
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"maxTimeoutSeconds": 300
}
]Extensions
{
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {
"days": 7,
"symbol": "BTC",
"interval": "1d"
}
},
"output": {
"type": "json",
"example": {
"vs": "USD",
"end": "2026-08-01",
"stale": false,
"start": "2026-07-26",
"stats": {
"open": 64295.61,
"close": 62445.14,
"avg_volume": 5791.88,
"change_pct": -2.88,
"period_low": 62209.81,
"period_high": 65705.08
},
"source": "coinbase",
"symbol": "BTC",
"candles": [
{
"low": 64229.6,
"high": 65511.36,
"open": 64295.61,
"time": "2026-07-26T00:00:00.000Z",
"close": 65341.07,
"volume": 2390.56790196
},
{
"low": 63545,
"high": 65705.08,
"open": 65341.07,
"time": "2026-07-27T00:00:00.000Z",
"close": 63694.43,
"volume": 5069.45269918
},
{
"low": 62645.39,
"high": 64041.02,
"open": 63693.44,
"time": "2026-07-28T00:00:00.000Z",
"close": 63847.12,
"volume": 6232.18054403
},
{
"low": 63194.45,
"high": 64665.3,
"open": 63847.12,
"time": "2026-07-29T00:00:00.000Z",
"close": 63896.14,
"volume": 8092.70552294
},
{
"low": 63502.91,
"high": 65118.08,
"open": 63896.14,
"time": "2026-07-30T00:00:00.000Z",
"close": 64721.9,
"volume": 8025.87127027
},
{
"low": 62358.96,
"high": 65360,
"open": 64721.9,
"time": "2026-07-31T00:00:00.000Z",
"close": 62825.9,
"volume": 8260.37090197
},
{
"low": 62209.81,
"high": 63093,
"open": 62826.69,
"time": "2026-08-01T00:00:00.000Z",
"close": 62445.14,
"volume": 2472.01120363
}
],
"findings": [],
"interval": "1d",
"candle_count": 7,
"cache_age_seconds": 0
}
}
},
"schema": {
"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",
"properties": {
"vs": {
"type": "string",
"description": "Quote currency: USD (default), EUR or GBP. Aliases: currency, fiat, vs_currency"
},
"date": {
"type": "string",
"description": "YYYY-MM-DD price-at-date mode: that day's single daily candle + its close as price. Mutually exclusive with days/limit"
},
"days": {
"type": "number",
"description": "Lookback window, default 30. Max 300 for 1d, 12 for 1h (300 candles). Alias: period"
},
"limit": {
"type": "number",
"description": "Number of most-recent candles (the usual candle-API param). Capped at 288 for 1h, 300 for 1d. Aliases: count, candles. Use instead of days."
},
"symbol": {
"type": "string",
"description": "One ticker or full name (\"BTC\" or \"bitcoin\"); a leading $ is fine. Aliases: coin, ticker, asset"
},
"interval": {
"type": "string",
"description": "1h or 1d (default 1d). hour/hourly and day/daily accepted. Aliases: granularity, timeframe"
}
}
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"properties": {
"vs": {
"type": "string"
},
"end": {
"type": "string"
},
"price": {
"type": [
"number",
"null"
]
},
"stale": {
"type": "boolean"
},
"start": {
"type": "string"
},
"stats": {
"type": "object",
"properties": {
"open": {
"type": "number"
},
"close": {
"type": "number"
},
"avg_volume": {
"type": "number"
},
"change_pct": {
"type": [
"number",
"null"
]
},
"period_low": {
"type": "number"
},
"period_high": {
"type": "number"
}
}
},
"source": {
"type": "string",
"description": "coinbase | kraken"
},
"symbol": {
"type": "string"
},
"candles": {
"type": "array",
"items": {
"type": "object",
"properties": {
"low": {
"type": "number"
},
"high": {
"type": "number"
},
"open": {
"type": "number"
},
"time": {
"type": "string"
},
"close": {
"type": "number"
},
"volume": {
"type": "number"
}
}
}
},
"findings": {
"type": "array"
},
"interval": {
"type": "string"
},
"candle_count": {
"type": "number"
},
"cache_age_seconds": {
"type": "number"
}
}
}
}
}
}
}
}
}Provenance
- Seen in the source catalog
- 2026-09-19 20:37Z
- Last indexed by Roundhouse
- 2026-09-24 13:00Z
- Last enriched (probe, favicon, geo)
- 2026-09-13 09:15Z
- x402 version
- 2
- Max timeout
- 300s
- Liveness probe
- HTTP 402
Hand this page to an agent
Copy the prompt and paste it into Claude, an MCP client or your own agent — it will vet this service and call it over the free read API. No key, no account.
GET api.roundhouseai.io/v0/endpoints
This endpoint's own trailing-30-day call count, as published by the upstream catalog and snapshotted daily. 30 snapshots so far. Verified volume counts only settlements with an on-chain EIP-3009 marker.
Show the promptHide the prompt
Using Roundhouse, look up the x402 service NetIntel and tell me whether it is worth paying: what a call costs, whether the endpoint answered when last probed, and what its payment record actually shows. curl -s 'https://api.roundhouseai.io/v0/endpoints?q=NetIntel' curl -s 'https://api.roundhouseai.io/v0/merchants/<the payTo wallet returned above>' Then call it: read the price from the live 402 at https://netintel.dev/crypto/ohlc, never from a cached figure, and pay with an x402 client. The /v0 API needs an API key (`authorization: Bearer rh_live_…`) on everything except /v0/unified* and /v0/endpoints. Mint a personal key for $0.01 at GET https://api.roundhouseai.io/v0/test/x402, or use an organization key from https://roundhouseai.io/dashboard/team. If you do not have Roundhouse tools or skills installed, read https://roundhouseai.io/skill.md first — it is the whole procedure.