Resolve an Irish company from its name and optional CRO number, Eircode and address
Resolve an Irish company from its name and optional CRO number, Eircode and address. Returns explicit ambiguity and matching evidence.
2000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-10
updated
Provider
testnet.queryspigot.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:84532",
"payTo": "0x748C9c8908d6f472b260010f1CdC308025be29b9",
"asset": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"amount": "2000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"eircode": "T12AB34",
"name": "Example Software Ltd"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"candidates": [],
"match": null,
"snapshot_id": "synthetic-example",
"source": {
"notice": "Synthetic schema example.",
"synthetic": true
},
"status": "no_match"
},
"type": "json"
}
},
"routeTemplate": "/api/v1/resolve",
"schema": {
"properties": {
"input": {
"properties": {
"body": {
"additionalProperties": false,
"anyOf": [
{
"required": [
"name"
]
},
{
"required": [
"company_number"
]
}
],
"properties": {
"address": {
"type": "string"
},
"company_number": {
"type": "string"
},
"eircode": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"body"
],
"type": "object"
},
"output": {
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://testnet.queryspigot.com/api/v1/resolve" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://testnet.queryspigot.com/api/v1/resolve");
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://testnet.queryspigot.com/api/v1/resolve")
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/15433.json, and this resource appears in /discovery/resources and /discovery/search.