Create maps easily,
mark spots instantly

Easily create maps and add markers with our API. Perfect for tracking locations, sharing points of interest, and visualizing data with minimal setup.

Forget complicated APIs. Just create, customize, and share your map in seconds.

curl -X POST https://mapisy.com/api/maps/demo/markers \
    -H "Authorization: Bearer d3gnkv8xuv60d7tm403q2c" \
    -H "Content-Type: application/json" \
    -d "{
      \"latitude\": -52.92363529591223,
      \"longitude\": 62.729073953758984,
      \"title\": \"Demo marker\"
    }"

Get Started

🌍

1. Create Your Map

Just add the path to the current URL and, if it's available, that's it. No complex setups, just instant maps.

⚙️

2. Customize

Set the center, zoom level, title, and description of your map with ease. Mapisy adapts to your specific needs.

📍

3. Add Markers

Use the simple API to add markers in seconds. Every point shows up on your map instantly, giving you live data visualization.

🔗

4. Share and Explore

Share your map with a simple link. Perfect for highlighting points of interest and showcasing data effortlessly.

Simple API

Create a marker

curl -X POST https://mapisy.com/api/maps/{map_id}/markers \
    -H "Authorization: Bearer {api_key}" \
    -H "Content-Type: application/json" \
    -d "{
        \"latitude\": {latitude},
        \"longitude\": {longitude},
        \"title\": {title}
    }"

Remove a marker

curl -X DELETE https://mapisy.com/api/maps/{map_id}/markers/{marker_id} \
    -H "Authorization: Bearer {api_key}" \
    -H "Content-Type: application/json"

Update map configuration

curl -X PUT https://mapisy.com/api/maps/{map_id} \
    -H "Authorization: Bearer {api_key}" \
    -H "Content-Type: application/json" \
    -d "{
        \"latitude\": {latitude},
        \"longitude\": {longitude},
        \"zoom\": {zoom},
        \"title\": {title},
        \"description\": {description}
    }"

More functionality coming soon...