UNICEF Data StrategicPlan API

The StrategicPlan API from UNICEF Data — 6 operation(s) for strategicplan.

Operations 6

GET /api/strategicplan Get the list of all strategic plan areas #
GET /api/strategicplan/goalarea/{areaID} Get the a strategic plan goal area by id #
GET /api/strategicplan/statements Get the list of all strategic plan statements #
GET /api/strategicplan/statement/{statementCode} Get the a strategic plan statement by helix code #
GET /api/strategicplan/statement/id/{statementID} Get the a strategic plan statement by id #
GET /api/strategicplan/statements/area/{SPAreaCode} Get the list of all strategic plan statements of a strategic plan goal area, by SP goal area Helix Code (GA_1, GA2, etc.) #

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-strategicplan-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-strategicplan-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: GeoSight Basemap Strategic Plan API
  version: v1.0.0
servers:
- url: https://geosight.unicef.org/api/v1
security:
- ApiKey Auth: []
tags:
- name: StrategicPlan
paths:
  /api/strategicplan:
    get:
      tags:
      - StrategicPlan
      summary: Get the list of all strategic plan areas
      operationId: StrategicPlan_GetStrategicPlanGoalAreas
      responses:
        '200':
          description: The list of all of all strategic plan areas related to indicators.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/StrategicPlanAreaItem'
  /api/strategicplan/goalarea/{areaID}:
    get:
      tags:
      - StrategicPlan
      summary: Get the a strategic plan goal area by id
      operationId: StrategicPlan_GetStrategicPlanGoalArea
      parameters:
      - name: areaID
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The strategic plan goal area by id.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StrategicPlanAreaItem'
  /api/strategicplan/statements:
    get:
      tags:
      - StrategicPlan
      summary: Get the list of all strategic plan statements
      operationId: StrategicPlan_GetStrategicPlanStatements
      responses:
        '200':
          description: The list of all of all strategic plan statements.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/StrategicPlanStatementItem'
  /api/strategicplan/statement/{statementCode}:
    get:
      tags:
      - StrategicPlan
      summary: Get the a strategic plan statement by helix code
      operationId: StrategicPlan_GetStrategicPlanStatement
      parameters:
      - name: statementCode
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: The strategic plan statement by helix code.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StrategicPlanStatementItem'
  /api/strategicplan/statement/id/{statementID}:
    get:
      tags:
      - StrategicPlan
      summary: Get the a strategic plan statement by id
      operationId: StrategicPlan_GetStrategicPlanStatement2
      parameters:
      - name: statementID
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The strategic plan statement by helix code.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StrategicPlanStatementItem'
  /api/strategicplan/statements/area/{SPAreaCode}:
    get:
      tags:
      - StrategicPlan
      summary: Get the list of all strategic plan statements of a strategic plan goal area, by SP goal area Helix Code (GA_1, GA2, etc.)
      operationId: StrategicPlan_GetStrategicPlanStatementByArea
      parameters:
      - name: SPAreaCode
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: The list of all of all strategic plan statements of a strategic plan goal area, by SP goal area Helix Code (GA_1, GA2, etc.).
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/StrategicPlanStatementItem'
components:
  schemas:
    StrategicPlanStatementItem:
      type: object
      required:
      - id
      properties:
        id:
          type: integer
          format: int32
        editedBy:
          type: string
        editedDate:
          type: string
        statement:
          type: string
        code:
          type: string
        spArea:
          $ref: '#/components/schemas/StrategicPlanAreaItem'
    StrategicPlanAreaItem:
      type: object
      required:
      - id
      properties:
        id:
          type: integer
          format: int32
        name:
          type: string
        editedBy:
          type: string
        editedDate:
          type: string
        description:
          type: string
        code:
          type: string
  securitySchemes:
    ApiKey_Auth:
      type: apiKey
      in: header
      name: Authorization