UNICEF Data Style API

The Style API from UNICEF Data — 2 operation(s) for style.

Operations 6

GET /styles/ #
POST /styles/ #
GET /styles/{id}/ #
PUT /styles/{id}/ #
PATCH /styles/{id}/ #
DELETE /styles/{id}/ #

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-style-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-style-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: GeoSight Basemap Style API
  version: v1.0.0
servers:
- url: https://geosight.unicef.org/api/v1
security:
- ApiKey Auth: []
tags:
- name: Style
paths:
  /styles/:
    parameters: []
    get:
      operationId: style-list
      description: Return list of accessed style 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
      - name: type__in
        in: query
        description: Filter data by multiple type. Put multiple filter using comma separator.
        schema:
          type: string
      - name: project_slug__in
        in: query
        description: Filter data by multiple project slug. Put multiple filter using comma separator.
        schema:
          type: string
      - name: project_id__in
        in: query
        description: Filter data by multiple project id. 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/Style'
      tags:
      - Style
    post:
      operationId: style-create
      description: Create a style.
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Style'
      tags:
      - Style
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Style'
        required: true
  /styles/{id}/:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: style-detail
      description: Return detailed of style.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Style'
      tags:
      - Style
    put:
      operationId: style-detail-update
      description: Replace a detailed of style.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Style'
      tags:
      - Style
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Style'
        required: true
    patch:
      operationId: style-detail-partial-update
      description: Update just partial data based on payload a detailed of style.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Style'
      tags:
      - Style
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Style'
        required: true
    delete:
      operationId: style-detail-delete
      description: Delete a style.
      responses:
        '204':
          description: ''
      tags:
      - Style
components:
  schemas:
    Style:
      required:
      - name
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        modified_at:
          title: Modified at
          type: string
          readOnly: true
        created_at:
          title: Created at
          type: string
          readOnly: true
        category:
          title: Category
          type: string
          readOnly: true
        description:
          title: Description
          type:
          - string
          - 'null'
        name:
          title: Name
          type: string
          maxLength: 512
          minLength: 1
        style_type:
          title: Style type
          type: string
          enum:
          - Predefined style/color rules.
          - Dynamic quantitative style.
          - Dynamic qualitative style.
  securitySchemes:
    ApiKey_Auth:
      type: apiKey
      in: header
      name: Authorization