Skip to main content
POST
/
v1
/
intersections
Return reference areas intersecting a geometry
curl --request POST \
  --url https://api.example.com/v1/intersections \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "input": {
    "geometry": {
      "coordinates": [
        [
          [
            123
          ]
        ]
      ],
      "type": "Polygon",
      "bbox": [
        123
      ]
    },
    "crs": "<string>"
  },
  "reference_areas_country_iso3": "<string>",
  "reference_areas_source": "<string>",
  "reference_id": "<string>"
}
'
{}

Documentation Index

Fetch the complete documentation index at: https://code4source.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

accept
string | null
Idempotency-Key
string | null

Body

application/json
input
SpatialInput · object
required

User-supplied data for the request — geometry plus an optional source CRS. Required.

reference_areas_country_iso3
string | null

ISO3 filter (e.g. 'BRA').

Required string length: 3
reference_areas_source
string | null

Source filter (e.g. 'wfs').

Maximum string length: 64
reference_id
string | null

Optional caller-provided reference identifier for audit/trace.

Maximum string length: 128

Response

Intersections returned.

The response is of type FeatureCollection · object.