Find structured government datasets across Asia-Pacific open-data portals in one
Find structured government datasets across Asia-Pacific open-data portals in one call: data.gov.au (Australia), the e-Gov Data Portal and the Tokyo catalog (Japan), DATA.GOV.HK (Hong Kong). Query in any language, the portal's own included; every match comes back with its organization, licence, update time and the download URLs of its CSV/JSON/XLS resources, ready for fetch.raw. Portals that did not answer are listed, never hidden. Input: query; optional region (au, jp, hk, all), limit, portals.
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
POST https://hubvibe-io.com/work/opendata/search
| Category | Search and research |
|---|---|
| Provider host | hubvibe-io.com |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| 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-27 | valid payment request | 402 | $0.1 | 831 ms |
Example input (from the provider)
{
"body": {
"limit": 5,
"query": "\u4eba\u53e3",
"region": "jp"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"limit": {
"description": "Results per portal, default 10.",
"maximum": 50,
"minimum": 1,
"type": "integer"
},
"portals": {
"description": "Specific portal ids instead of a region, e.g. [\"data.gov.au\"].",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
},
"query": {
"description": "Words to search for, in any language (e.g. \u4eba\u53e3, rainfall, \u4ea4\u901a).",
"maxLength": 300,
"minLength": 1,
"type": "string"
},
"region": {
"description": "Which portals to search. Default all.",
"enum": [
"all",
"au",
"hk",
"jp"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "The 200 body of every paid /work call. `result` is the worker's own output (its schema is per route); everything else is the same on every /work route. A receipt for the job is at `receipt_url`.",
"properties": {
"billing_warning": {
"description": "Present only when the charge was recorded with a caveat.",
"examples": [
"settlement pending"
],
"type": "string"
},
"price_usd": {
"description": "What this call cost, in USD.",
"examples": [
0.02
],
"type": "number"
},
"provenance": {
"description": "How the result was produced: which providers ran and how long each took.",
"properties": {
"attempts": {
"description": "Provider attempts made, including retries and failovers.",
"examples": [
1
],
"type": "integer"
},
"elapsed_ms": {
"description": "Wall-clock milliseconds for the whole job.",
"examples": [
340
],
"type": "integer"
},
"providers_used": {
"description": "Providers that served the job.",
"examples": [
[
"coinbase-advanced-trade-public"
]
],
"items": {
"description": "Provider name.",
"examples": [
"coinbase-advanced-trade-public"
],
"type": "string"
},
"type": "array"
},
"steps": {
"description": "Every step the job ran, in order.",
"items": {
"description": "One step of the job.",
"properties": {
"ms": {
"description": "Milliseconds the step took.",
"examples": [
312
],
"type": "integer"
},
"ok": {
"description": "Whether the step succeeded.",
"examples": [
true
],
"type": "boolean"
},
"provider": {
"description": "Provider that served the step.",
"examples": [
"coinbase-advanced-trade-public"
],
"type": "string"
},
"reason": {
"description": "Failure reason, on a failed step.",
"examples": [
"provider_timeout"
],
"type": "string"
},
"step": {
"description": "Step name inside the worker.",
"examples": [
"quote"
],
"type": "string"
}
},
"required": [
"step",
"ok",
"ms"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"steps",
"providers_used",
"attempts",
"elapsed_ms"
],
"type": "object"
},