UNICEF Data Region API

The Region API from UNICEF Data — 4 operation(s) for region.

Operations 4

GET /api/regions Get the list of all Regions #
GET /api/regions/byseries/{RegionSeriesId} Get the list of all Regions by Series ID #
GET /api/regions/series Get the list of all region series #
GET /api/regions/collections Get the list of all region collections #

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-region-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-region-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: GeoSight Basemap Region API
  version: v1.0.0
servers:
- url: https://geosight.unicef.org/api/v1
security:
- ApiKey Auth: []
tags:
- name: Region
paths:
  /api/regions:
    get:
      tags:
      - Region
      summary: Get the list of all Regions
      operationId: Region_GetRegions
      responses:
        '200':
          description: The list of all Regions
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RegionItem'
  /api/regions/byseries/{RegionSeriesId}:
    get:
      tags:
      - Region
      summary: Get the list of all Regions by Series ID
      operationId: Region_GetRegionsBySeries
      parameters:
      - name: RegionSeriesId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The list of all Regions by Series ID
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RegionItem'
  /api/regions/series:
    get:
      tags:
      - Region
      summary: Get the list of all region series
      operationId: Region_GetSeries
      responses:
        '200':
          description: The list of all region series, like "UNICEF Reporting Regions" or "World Bank Regional Classifications"
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RegionSeriesItem'
  /api/regions/collections:
    get:
      tags:
      - Region
      summary: Get the list of all region collections
      operationId: Region_GetCollections
      responses:
        '200':
          description: The list of all region collections, like "UNICEF Regions" or "World Bank Regions"
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RegionCollectionItem'
components:
  schemas:
    RegionSeriesItem:
      type: object
      required:
      - regionSeriesId
      properties:
        regionSeriesId:
          type: integer
          format: int32
        code:
          type: string
        name:
          type: string
        description:
          type: string
        createdBy:
          type: string
        createdDate:
          type: string
        custodians:
          type: array
          items:
            $ref: '#/components/schemas/CustodianItem'
        regions:
          type: array
          items:
            $ref: '#/components/schemas/RegionItem'
    RegionItem:
      type: object
      required:
      - regionId
      - level
      properties:
        regionId:
          type: integer
          format: int32
        m49:
          type: string
        altName:
          type: string
        status:
          type: string
        level:
          type: integer
          format: int32
        description:
          type: string
        createdBy:
          type: string
        createdDate:
          type: string
        cndregionalCode:
          type: string
        organization:
          type: string
        language2Name:
          type: array
          items:
            $ref: '#/components/schemas/RegionNameItem'
        countries:
          type: array
          items:
            $ref: '#/components/schemas/CountryRegionsItem'
        parentRegionID:
          type: integer
          format: int32
        parentCndregionalCode:
          type: string
        collection:
          $ref: '#/components/schemas/RegionCollectionItem'
        series:
          $ref: '#/components/schemas/RegionSeriesItem'
    RegionNameItem:
      type: object
      required:
      - regionId
      - languageId
      properties:
        regionId:
          type: integer
          format: int32
        languageId:
          type: integer
          format: int32
        languageName:
          type: string
        createdBy:
          type: string
        createdDate:
          type: string
        value:
          type: string
    CustodianItem:
      type: object
      required:
      - id
      properties:
        id:
          type: integer
          format: int32
        name:
          type: string
        editedBy:
          type: string
        editedDate:
          type: string
        code:
          type: string
    CountryRegionsItem:
      type: object
      properties:
        countryId:
          type: integer
          format: int32
        countryCndCode:
          type: string
        countryISO:
          type: string
        regionId:
          type: integer
          format: int32
        regionCndCode:
          type: string
        createdBy:
          type: string
        createdDate:
          type: string
          format: date-time
    RegionCollectionItem:
      type: object
      required:
      - regionCollectionId
      properties:
        regionCollectionId:
          type: integer
          format: int32
        code:
          type: string
        name:
          type: string
        createdBy:
          type: string
        createdDate:
          type: string
        regions:
          type: array
          items:
            $ref: '#/components/schemas/RegionItem'
  securitySchemes:
    ApiKey_Auth:
      type: apiKey
      in: header
      name: Authorization