UNICEF Data Related table data API

The Related table data API from UNICEF Data — 3 operation(s) for related table data.

Operations 7

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-related-table-data-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-related-table-data-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: GeoSight Basemap Related table data API
  version: v1.0.0
servers:
- url: https://geosight.unicef.org/api/v1
security:
- ApiKey Auth: []
tags:
- name: Related table data
paths:
  /related-tables/{related_tables_id}/data/:
    parameters:
    - name: related_tables_id
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: related-table-data-list
      description: Return list of related table rows for the user.
      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: Resource fetching successful.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RelatedTableRowApi'
      tags:
      - Related table data
    post:
      operationId: related-table-data-create
      description: Create related table rows.
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                description: Data needed to create/edit related table rows.
                type: object
                properties:
                  id:
                    title: Id
                    type: integer
                    readOnly: true
                  properties:
                    title: Row values
                    description: Keys are field names from fields_definition in the associated related table
                    type: object
      tags:
      - Related table data
      requestBody:
        content:
          application/json:
            schema:
              description: Data needed to create/edit related table rows.
              type: object
              properties:
                id:
                  title: Id
                  type: integer
                  readOnly: true
                properties:
                  title: Row values
                  description: Keys are field names from fields_definition in the associated related table
                  type: object
        required: true
  /related-tables/{related_tables_id}/data/{id}/:
    parameters:
    - name: related_tables_id
      in: path
      required: true
      schema:
        type: string
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: related-table-data-detail
      description: Return detail of a related table row for the user.
      responses:
        '200':
          description: Resource fetching successful.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RelatedTableRowApi'
      tags:
      - Related table data
    put:
      operationId: related-table-data-update
      description: Update a related table row.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                description: Data needed to create/edit related table rows.
                type: object
                properties:
                  id:
                    title: Id
                    type: integer
                    readOnly: true
                  properties:
                    title: Row values
                    description: Keys are field names from fields_definition in the associated related table
                    type: object
      tags:
      - Related table data
      requestBody:
        content:
          application/json:
            schema:
              description: Data needed to create/edit related table rows.
              type: object
              properties:
                id:
                  title: Id
                  type: integer
                  readOnly: true
                properties:
                  title: Row values
                  description: Keys are field names from fields_definition in the associated related table
                  type: object
        required: true
    patch:
      operationId: related-table-data-partial-update
      description: Update an existing related table row.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RelatedTableRowApi'
      tags:
      - Related table data
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RelatedTableRowApi'
        required: true
    delete:
      operationId: related-table-data-delete
      description: Delete a related table row.
      responses:
        '204':
          description: ''
      tags:
      - Related table data
  /related-tables/{related_tables_id}/geo-data/:
    parameters:
    - name: related_tables_id
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: related-table-geo-data-list
      description: Return list of data with geospatial data.
      parameters:
      - name: limit
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      - name: offset
        in: query
        description: The initial index from which to return the results.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: Resource fetching successful.
      tags:
      - Related table data
components:
  schemas:
    RelatedTableRowApi:
      required:
      - properties
      type: object
      properties:
        id:
          title: Id
          type: integer
          readOnly: true
        properties:
          title: Row values
          description: Keys are field names from fields_definition in the associated related table
          type: object
      title: RelatedTableRow
      example:
        id: 1
        properties:
          field_1: value_1
          field_2: '2024-02-14T00:00:00Z'
          field_3: 42.7
  securitySchemes:
    ApiKey_Auth:
      type: apiKey
      in: header
      name: Authorization