UNICEF Data Dashboard API

The Dashboard API from UNICEF Data — 5 operation(s) for dashboard.

Operations 6

GET /dashboards/ #
GET /dashboards/groups/ #
GET /dashboards/{slug}/ #
DELETE /dashboards/{slug}/ #
POST /dashboards/{slug}/as-feature/ #
POST /dashboards/{slug}/remove-as-feature/ #

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-dashboard-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-dashboard-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: GeoSight Basemap Dashboard API
  version: v1.0.0
servers:
- url: https://geosight.unicef.org/api/v1
security:
- ApiKey Auth: []
tags:
- name: Dashboard
paths:
  /dashboards/:
    parameters: []
    get:
      operationId: dashboard-list
      description: Return list of accessed dashboard for the user.
      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: name__contains
        in: query
        description: Filter data by partial name.
        schema:
          type: string
      - name: description__contains
        in: query
        description: Filter data by partial description.
        schema:
          type: string
      - name: category__name__in
        in: query
        description: Filter data by multiple category. Put multiple filter using comma separator.
        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/DashboardBasic'
      tags:
      - Dashboard
  /dashboards/groups/:
    parameters: []
    get:
      operationId: dashboard-group-list
      description: List dashboard groups.
      parameters:
      - name: page
        in: query
        description: A page number within the paginated result set.
        required: false
        schema:
          type: integer
      - name: page_size
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      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/DashboardBasic'
      tags:
      - Dashboard
  /dashboards/{slug}/:
    parameters:
    - name: slug
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: dashboard-detail
      description: Return detailed of dashboard.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DashboardBasic'
      tags:
      - Dashboard
    delete:
      operationId: dashboard-detail-delete
      description: Delete a dashboard.
      responses:
        '204':
          description: ''
      tags:
      - Dashboard
  /dashboards/{slug}/as-feature/:
    parameters:
    - name: slug
      in: path
      required: true
      schema:
        type: string
    post:
      operationId: dashboard-detail-as-feature
      description: Feature a dashboard.
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DashboardBasic'
      tags:
      - Dashboard
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DashboardBasic'
        required: true
  /dashboards/{slug}/remove-as-feature/:
    parameters:
    - name: slug
      in: path
      required: true
      schema:
        type: string
    post:
      operationId: dashboard-detail-remove-as-feature
      description: Remove feature a dashboard.
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DashboardBasic'
      tags:
      - Dashboard
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DashboardBasic'
        required: true
components:
  schemas:
    DashboardBasic:
      required:
      - slug
      - name
      type: object
      properties:
        id:
          title: Id
          type: string
          readOnly: true
        slug:
          title: Slug
          type: string
          format: slug
          pattern: ^[-a-zA-Z0-9_]+$
          maxLength: 512
          minLength: 1
        icon:
          title: Icon
          type:
          - string
          - 'null'
          readOnly: true
          format: uri
        thumbnail:
          title: Thumbnail
          type: string
          readOnly: true
        name:
          title: Name
          type: string
          maxLength: 512
          minLength: 1
        description:
          title: Description
          type:
          - string
          - 'null'
        group:
          title: Group
          type: string
          readOnly: true
        category:
          title: Category
          type: string
          readOnly: true
        permission:
          title: Permission
          type: string
          readOnly: true
        reference_layer:
          title: Reference layer
          description: Reference layer.
          type:
          - integer
          - 'null'
        featured:
          title: Featured
          type: boolean
        created_at:
          title: Created at
          type: string
          readOnly: true
        modified_at:
          title: Modified at
          type: string
          readOnly: true
  securitySchemes:
    ApiKey_Auth:
      type: apiKey
      in: header
      name: Authorization