UNICEF Data Codelist API

The Codelist API from UNICEF Data — 4 operation(s) for codelist.

Operations 4

GET /sdmx/codelists/indicators/{Version}/{Agency}/{IndicatorCodelist} SDMX published indicators codelist for a given Agency #
GET /sdmx/codelists/domains/{Version}/{Agency}/{Codelist} Support the agency / sector / domain / subdomain as an SDMX category scheme #
GET /sdmx/codelists/countries/{version} SDMX Country Codelist (only published countries) #
GET /sdmx/codelists/regions/{version} SDMX Regions Codelist #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/unicef-data-codelist-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

unicef-data-codelist-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: GeoSight Basemap Codelist API
  version: v1.0.0
servers:
- url: https://geosight.unicef.org/api/v1
security:
- ApiKey Auth: []
tags:
- name: Codelist
paths:
  /sdmx/codelists/indicators/{Version}/{Agency}/{IndicatorCodelist}:
    get:
      tags:
      - Codelist
      summary: SDMX published indicators codelist for a given Agency
      operationId: Codelist_GetIndicators
      parameters:
      - name: Version
        in: path
        required: true
        description: The version of the codelist (e.g. 1.3). Only 1 decimal digit is allowed
        schema:
          type: number
          format: decimal
      - name: Agency
        in: path
        required: true
        description: The name of the agency used to filter indicators (e.g. UNICEF). This is the agency owner of the indicator. Indicators borrowed by other agencies are not returned by this method
        schema:
          type: string
      - name: IndicatorCodelist
        in: path
        required: true
        description: The name of the SDMX indicator codelist associated to the agency (e.g. CL_UNICEF_INDICATOR)
        schema:
          type: string
      responses:
        '406':
          description: Input version has more than 1 decimal digit
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
  /sdmx/codelists/domains/{Version}/{Agency}/{Codelist}:
    get:
      tags:
      - Codelist
      summary: Support the agency / sector / domain / subdomain as an SDMX category scheme
      operationId: Codelist_GetDomains
      parameters:
      - name: Version
        in: path
        required: true
        description: The version of the category scheme (e.g. 1.3). Only 1 decimal digit is allowed
        schema:
          type: number
          format: decimal
      - name: Agency
        in: path
        required: true
        description: The name of the agency used to filter domains (e.g. UNICEF). This is the agency owner of the indicator. Indicators borrowed by other agencies are not returned by this method
        schema:
          type: string
      - name: Codelist
        in: path
        required: true
        description: The name of the codelist associated to the agency (e.g. CS_UNICEF)
        schema:
          type: string
      responses:
        '406':
          description: Input version has more than 1 decimal digit
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
  /sdmx/codelists/countries/{version}:
    get:
      tags:
      - Codelist
      summary: SDMX Country Codelist (only published countries)
      operationId: Codelist_GetCountries
      parameters:
      - name: version
        in: path
        required: true
        description: A decimal expressing the version of the codelist. e.g. 1.0. Only 1 decimal digit is allowed
        schema:
          type: number
          format: decimal
      responses:
        '406':
          description: Input version has more than 1 decimal digit
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
  /sdmx/codelists/regions/{version}:
    get:
      tags:
      - Codelist
      summary: SDMX Regions Codelist
      operationId: Codelist_GetRegions
      parameters:
      - name: version
        in: path
        required: true
        description: A decimal expressing the version of the codelist. e.g. 1.0. Only 1 decimal digit is allowed
        schema:
          type: number
          format: decimal
      responses:
        '406':
          description: Input version has more than 1 decimal digit
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    ProblemDetails:
      type: object
      additionalProperties: {}
      required:
      - extensions
      properties:
        type:
          type: string
        title:
          type: string
        status:
          type: integer
          format: int32
        detail:
          type: string
        instance:
          type: string
        extensions:
          type: object
          additionalProperties: {}
  securitySchemes:
    ApiKey_Auth:
      type: apiKey
      in: header
      name: Authorization