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 cm3mzbk26gppdxtnpsgph" \
    -H "Content-Type: application/json" \
    -d "{
      \"latitude\": 0.5614299166663415,
      \"longitude\": -13.062231256783974,
      \"title\": \"Demo marker\"
    }"

Get Started

🌍

1. Create Your Map

Simply add the path to our root URL, and you're ready to go. No complex setups, just instant maps. For example: https://mapisy.com/m3krnrlu_skbj3b

⚙️

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...