Find an API

Search public APIs with auth details & Postman guides

← All APIs

uebermaps API endpoints

uebermaps · Location

Location No Auth Free & Open location

Enable people to store spots on public and private maps

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET List your own events

List your own events.

https://api.apis.guru/v2/specs/uebermaps.com/2.0/events?bounds=example&timeframe_end=example&timeframe_start=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/uebermaps.com/2.0/events?bounds=example&timeframe_end=example&timeframe_start=example"
import requests
params = {
    "bounds": "example",
    "timeframe_end": "example",
    "timeframe_start": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/uebermaps.com/2.0/events",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/uebermaps.com/2.0/events');
url.searchParams.set('bounds', 'example');
url.searchParams.set('timeframe_end', 'example');
url.searchParams.set('timeframe_start', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/uebermaps.com/2.0/events")
	q := baseURL.Query()
	q.Set("bounds", "example")
	q.Set("timeframe_end", "example")
	q.Set("timeframe_start", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/uebermaps.com/2.0/events")
uri.query = URI.encode_www_form({
  "bounds" => "example",
  "timeframe_end" => "example",
  "timeframe_start" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/uebermaps.com/2.0/events?" . http_build_query([
    "bounds" => "example",
    "timeframe_end" => "example",
    "timeframe_start" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET List your own spots

List your own spots.

https://api.apis.guru/v2/specs/uebermaps.com/2.0/spots?order=created_at_asc

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/uebermaps.com/2.0/spots?order=created_at_asc"
import requests
params = {
    "order": "created_at_asc"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/uebermaps.com/2.0/spots",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/uebermaps.com/2.0/spots');
url.searchParams.set('order', 'created_at_asc');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/uebermaps.com/2.0/spots")
	q := baseURL.Query()
	q.Set("order", "created_at_asc")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/uebermaps.com/2.0/spots")
uri.query = URI.encode_www_form({
  "order" => "created_at_asc"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/uebermaps.com/2.0/spots?" . http_build_query([
    "order" => "created_at_asc"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET List subscriptions. Pass no parameters to get own subscriptions

List subscriptions.

https://api.apis.guru/v2/specs/uebermaps.com/2.0/subscriptions?map_id=1&user_id=1

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/uebermaps.com/2.0/subscriptions?map_id=1&user_id=1"
import requests
params = {
    "map_id": "1",
    "user_id": "1"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/uebermaps.com/2.0/subscriptions",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/uebermaps.com/2.0/subscriptions');
url.searchParams.set('map_id', '1');
url.searchParams.set('user_id', '1');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/uebermaps.com/2.0/subscriptions")
	q := baseURL.Query()
	q.Set("map_id", "1")
	q.Set("user_id", "1")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/uebermaps.com/2.0/subscriptions")
uri.query = URI.encode_www_form({
  "map_id" => "1",
  "user_id" => "1"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/uebermaps.com/2.0/subscriptions?" . http_build_query([
    "map_id" => "1",
    "user_id" => "1"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with uebermaps API endpoints?

uebermaps API endpoints is a Location API. Developers commonly use location APIs for:

  • tracking assets and vehicles in real time
  • building delivery and logistics apps
  • finding nearby businesses or services
  • geo-fencing and location-based notifications
  • address validation and autocomplete

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. uebermaps API endpoints is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗