Locus public pay-per-use API
Locus public pay-per-use API
5000 (raw units)
price
429
calls / 30d
3
unique payers
2026-09-14
updated
Provider
apollo.x402.paywithlocus.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3C5CBe28ECA3b96023c45D3f877da834F1C7d5fA",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"page": 1,
"per_page": 1,
"q_organization_name": "Apple"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": true,
"allOf": [
{
"anyOf": [
{
"required": [
"q_keywords"
]
},
{
"required": [
"q_organization_name"
]
},
{
"required": [
"organization_industry_tag_ids"
]
},
{
"required": [
"organization_locations"
]
},
{
"required": [
"q_organization_keyword_tags"
]
}
]
}
],
"properties": {
"organization_industry_tag_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"organization_locations": {
"items": {
"type": "string"
},
"type": "array"
},
"organization_num_employees_ranges": {
"items": {
"type": "string"
},
"type": "array"
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"q_organization_keyword_tags": {
"items": {
"type": "string"
},
"type": "array"
},
"q_organization_name": {
"type": "string"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://apollo.x402.paywithlocus.com/apollo/org-search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://apollo.x402.paywithlocus.com/apollo/org-search");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://apollo.x402.paywithlocus.com/apollo/org-search")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/8681.json, and this resource appears in /discovery/resources and /discovery/search.