Skip to main content
GET
/
api
/
v1
/
sources
/
{id}
Get a source summary
curl --request GET \
  --url https://data.kushiro.app/api/v1/sources/{id}
{
  "source_id": "<string>",
  "metric_count": 1,
  "point_count": 1,
  "latest_fetched_at": "2023-11-07T05:31:56Z",
  "metrics": [
    {
      "name": "<string>",
      "count": 1,
      "unit": "<string>",
      "period_range": {
        "start": "2026-04-01",
        "end": "2026-04-01"
      }
    }
  ]
}

Path Parameters

id
string
required

Source ID, for example kushiro_population_households_monthly.

Minimum string length: 1

Response

Published source detail. Includes the summary counts plus a per-metric breakdown.

source_id
string
required
metric_count
integer
required
Required range: x >= 0
point_count
integer
required
Required range: x >= 0
latest_fetched_at
string<date-time> | null
required
metrics
object[]
required

Per-metric breakdown (distinct metric names within the source). Empty for point-only sources.