UNICEF Data User API

The User API from UNICEF Data — 2 operation(s) for user.

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-user-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 email required.

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

OpenAPI Specification

unicef-data-user-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  title: GeoSight Basemap User API
  version: v1.0.0
host: geosight.unicef.org
basePath: /api/v1
schemes:
- https
consumes:
- application/json
produces:
- application/json
security:
- ApiKey Auth: []
tags:
- name: User
paths:
  /users/:
    parameters: []
    get:
      operationId: user-list
      description: Return list of accessed user for the user.
      parameters:
      - name: page
        in: query
        description: Page number in pagination
        type: integer
        default: 1
      - name: page_size
        in: query
        description: Total records in a page
        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
        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
        type: string
      - name: name__contains
        in: query
        description: Filter data by partial name.
        type: string
      responses:
        '200':
          description: ''
      tags:
      - User
    post:
      operationId: user-create
      description: Create a user.
      parameters: []
      responses:
        '201':
          description: ''
      tags:
      - User
  /users/{id}/:
    parameters:
    - name: id
      in: path
      required: true
      type: string
    get:
      operationId: user-detail
      description: Return detailed of user.
      parameters: []
      responses:
        '200':
          description: ''
      tags:
      - User
    put:
      operationId: user-detail-update
      description: Replace a detailed of user.
      parameters: []
      responses:
        '200':
          description: ''
      tags:
      - User
    patch:
      operationId: user-detail-partial-update
      description: Update just partial data based on payload a detailed of user.
      parameters: []
      responses:
        '200':
          description: ''
      tags:
      - User
    delete:
      operationId: user-detail-delete
      description: Delete a user.
      parameters: []
      responses:
        '204':
          description: ''
      tags:
      - User
securityDefinitions:
  ApiKey Auth:
    type: apiKey
    in: header
    name: Authorization