Look up an Irish company by exact CRO company number
Look up an Irish company by exact CRO company number. Returns legal name, status, registered address and source provenance as JSON. No name search. 0.01 USDC per successful lookup on Base.
Answers HTTP 503 without x402 payment termsour last check, 2026-09-24
0 of 1checks answered this week
n/amedian answer time
$0.01listed price per call
n/aprice it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://api.queryspigot.com/api/v1/company/:company_number
| Category | Company and compliance |
|---|---|
| Provider host | api.queryspigot.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | no x402 terms | 503 | 1097 ms |
Example input (from the provider)
{
"method": "GET",
"pathParams": {
"company_number": "100001"
},
"type": "http"
}
Promised output schema (from the provider)
{
"properties": {
"input": {
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"company_number": {
"description": "Exact CRO company number. Preserve leading zeros.",
"pattern": "^[0-9]{1,20}$",
"type": "string"
}
},
"required": [
"company_number"
],
"type": "object"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"pathParams"
],
"type": "object"
},
"output": {
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}