Skip to content

50,000 free calls a month, card-free. Get an API key →

Documentation menu
docs / api / post-map-issues
map-issues

POST/map-issues

API key required, sent as Authorization: Bearer snk_… or ?api_key=snk_….

Call it

bash
curl -fsS -X POST "https://api.mapmap.ai/map-issues" \
  -H "Authorization: Bearer $MAPMAP_KEY" \
  -H "Content-Type: application/json" \
  -d @request.json

Request body

application/json · CreateMapIssueRequest

FieldTypeRequiredDescription
categorystringyesOne of [CATEGORIES], e.g. "restriction-wrong".
contactstringnoOptional contact email for follow-up (trimmed, at most 200 bytes; length-checked only).
latnumberyesLatitude of the problem, decimal degrees (WGS84), within [-90, 90].
lonnumberyesLongitude of the problem, decimal degrees (WGS84), within [-180, 180].
notestringnoOptional free-form description (trimmed, at most 1000 bytes).

Responses

201Report stored for triage
FieldTypeRequiredDescription
idstringyesReport id (UUID v4).
400Invalid category, out-of-bounds coordinates or over-long note/contact
401Missing or invalid API key
429This key has hit its daily report cap

Error bodies follow the shared problem model documented on API conventions.

Generated from https://api.mapmap.ai/openapi.json on 2026-09-17 · operationId create_issue