GeoInsight Zone ID API

The Zone ID API from GeoInsight — 2 operation(s) for zone id.

Operations 2

GET /collections/{collection_id}/dggs/{dggrs_id}/zones/{zone_id} #
GET /dggs/{dggrs_id}/zones/{zone_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/geoinsight-zone-id-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

geoinsight-zone-id-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: oda Zone ID API
  description: ''
  license:
    name: ''
  version: 3.0.0
  x-apievangelist-note: Harvested verbatim from https://api.geoinsight.ai/api?f=json on 2026-08-20. info.title is the vendor internal name "oda"; the service self-identifies at its root document as "OGC DGGS API" with attribution to GeoInsight (https://docs.geoinsight.ai). servers[] was absent in the published document and was added by API Evangelist from the fetch host; nothing else was altered.
servers:
- url: https://api.geoinsight.ai
  description: GeoInsight OGC API - DGGS production endpoint
tags:
- name: Zone ID
paths:
  /collections/{collection_id}/dggs/{dggrs_id}/zones/{zone_id}:
    get:
      tags:
      - Zone ID
      operationId: collection_id_dggrs_id_zone_id_utoipa_doc
      parameters:
      - name: collection_id
        in: path
        description: Collection identifier
        required: true
        schema:
          type: string
      - name: dggrs_id
        in: path
        description: DGGRS identifier
        required: true
        schema:
          type: string
      - name: zone_id
        in: path
        description: Zone identifier
        required: true
        schema:
          type: string
      - name: refined-geometry
        in: query
        description: 'Densify zone geometry by interpolating additional points along edges. Default: true.'
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: Get ZONES
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ZoneIdResponse'
            text/html:
              schema:
                type: string
            application/geo+json:
              schema:
                type: string
  /dggs/{dggrs_id}/zones/{zone_id}:
    get:
      tags:
      - Zone ID
      operationId: dggrs_id_zone_id_utoipa_doc
      parameters:
      - name: dggrs_id
        in: path
        description: DGGRS identifier
        required: true
        schema:
          type: string
      - name: zone_id
        in: path
        description: Zone identifier
        required: true
        schema:
          type: string
      - name: refined-geometry
        in: query
        description: 'Densify zone geometry by interpolating additional points along edges. Default: true.'
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: Get ZONES
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ZoneIdResponse'
            text/html:
              schema:
                type: string
            application/geo+json:
              schema:
                type: string
components:
  schemas:
    Link:
      type: object
      required:
      - href
      - rel
      properties:
        href:
          type: string
        hreflang:
          type:
          - string
          - 'null'
        length:
          type:
          - integer
          - 'null'
          format: int64
        rel:
          type: string
        title:
          type:
          - string
          - 'null'
        type:
          type:
          - string
          - 'null'
    ZoneIdResponse:
      type: object
      required:
      - id
      - links
      properties:
        areaMetersSquare:
          type:
          - number
          - 'null'
          format: double
        bbox:
          type:
          - array
          - 'null'
          items:
            type: number
            format: double
          description: '[min_lon, min_lat, max_lon, max_lat] per OGC DGGS API spec'
        centroid:
          type:
          - array
          - 'null'
          items:
            type: number
            format: double
          description: '[lon, lat] per OGC DGGS API spec'
        crs:
          type:
          - string
          - 'null'
        geometry:
          type: object
        id:
          type: string
        level:
          type:
          - integer
          - 'null'
          format: int32
          minimum: 0
        links:
          type: array
          items:
            $ref: '#/components/schemas/Link'
        shapeType:
          type:
          - string
          - 'null'
        statistics:
          type:
          - object
          - 'null'
          additionalProperties:
            $ref: '#/components/schemas/ValueItem'
          propertyNames:
            type: string
        temporalDurationSeconds:
          type:
          - number
          - 'null'
          format: double
        temporalInterval:
          type:
          - array
          - 'null'
          items:
            type: string
        volumeMetersCube:
          type:
          - number
          - 'null'
          format: double
    ValueItem:
      type: object
      properties:
        average:
          type:
          - number
          - 'null'
          format: double
        maximum:
          type:
          - number
          - 'null'
          format: double
        minimum:
          type:
          - number
          - 'null'
          format: double
        stdDev:
          type:
          - number
          - 'null'
          format: double