UNICEF Data Data Browser API

The Data Browser API from UNICEF Data — 1 operation(s) for data browser.

Operations 1

GET /data-browser/ List of dashboard. #

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-data-browser-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-data-browser-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: GeoSight Basemap Data Browser API
  version: v1.0.0
servers:
- url: https://geosight.unicef.org/api/v1
security:
- ApiKey Auth: []
tags:
- name: Data Browser
paths:
  /data-browser/:
    parameters: []
    get:
      operationId: data-browser-list
      summary: List of dashboard.
      description: ":param request: The HTTP request object.\n:type request: HttpRequest\n:param *args: Additional positional arguments.\n:type *args: tuple\n:param **kwargs: Additional keyword arguments.\n:type **kwargs: dict\n:return: The HTTP response containing the list of dashboard data or\n    a bad request response.\n:rtype: HttpResponse"
      parameters:
      - name: page
        in: query
        description: Page number in pagination
        schema:
          type: integer
          default: 1
      - name: page_size
        in: query
        description: Total records in a page
        schema:
          type: integer
          default: 25
      - name: sort
        in: query
        description: 'Fields to be sorted should be specified as a comma-separated list.e.g: sort=name for asc, -sort=name for desc'
        required: false
        schema:
          type: string
      - name: fields
        in: query
        description: 'Fields to be returned should be specified as a comma-separated list.e.g: fields=__all__ for returning all fields, fields=name,category to return just name and category'
        required: false
        schema:
          type: string
      - name: indicator_id__in
        in: query
        description: Filter data by multiple indicator id. Put multiple filter using comma separator.
        schema:
          type: string
      - name: indicator_shortcode__in
        in: query
        description: Filter data by multiple indicator shortcode. Put multiple filter using comma separator.
        schema:
          type: string
      - name: dataset_uuid__in
        in: query
        description: Filter data by multiple reference dataset view uuid. Put multiple filter using comma separator.
        schema:
          type: string
      - name: admin_level__in
        in: query
        description: Filter data by multiple admin level in number. Put multiple filter using comma separator.
        schema:
          type: string
      - name: geom_id__in
        in: query
        description: Filter data by multiple geom id. Put multiple filter using comma separator.
        schema:
          type: string
      - name: date__gte
        in: query
        description: Filter data from the date in format YYYY-MM-DD.
        schema:
          type: string
      - name: date__lte
        in: query
        description: Filter data up to the date in format YYYY-MM-DD.
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/IndicatorValue'
      tags:
      - Data Browser
components:
  schemas:
    IndicatorValue:
      required:
      - date
      - geom_id
      type: object
      properties:
        id:
          title: id
          type: number
        indicator:
          title: Indicator
          type: string
        indicator_id:
          title: Indicator id
          type: number
        value:
          title: Value
          type: string
        date:
          title: Date
          type: string
        geom_id:
          title: Geom id
          type: string
        admin_level:
          title: Entity admin level
          type: number
        entity_name:
          title: Entity name
          type: string
        country_id:
          title: Country id
          type: string
        country_geom_id:
          title: Country geom id
          type: string
        country_name:
          title: Country name
          type: string
        attributes:
          title: Attributes
          type: object
        permission:
          title: Permission
          type: object
          properties:
            list:
              title: List
              type: boolean
            read:
              title: Read
              type: boolean
            edit:
              title: Edit
              type: boolean
            share:
              title: Share
              type: boolean
            delete:
              title: Delete
              type: boolean
      title: IndicatorValue
      example:
        id: 1
        indicator: Test indicator
        indicator_id: 1
        indicator_shortcode: TEST
        value: 0
        date: '1990-01-01'
        geom_id: GEOM_1
        admin_level: 1
        entity_name: Geometry 1
        country_id: 1
        country_geom_id: COUNTRY_1
        country_name: Country 1
        attributes:
          Value 1: 1
        permission:
          list: true
          read: true
          edit: true
          share: true
          delete: true
  securitySchemes:
    ApiKey_Auth:
      type: apiKey
      in: header
      name: Authorization