Pinball Map API

Beginner's Pick Geocoding / No Auth Required Beginner HTTPS CORS
Free to Use Varies (check documentation)
85 A
Measured Score 0 50 100 Reachability 30/30 Speed 5/20 Security 15/15 Developer XP 20/20 Reliability 15/15 TESTED 2026-07-23

Overview

Pinball Map is a free, crowdsourced API that shows where public pinball machines are located around the world. You can search by location to find nearby machines, venues, and machine condition reports. No API key is required, making it a fun and easy API to start experimenting with.

Beginner Tip

Use the /region endpoint first to get a list of valid region slugs (like "chicago" or "portland"), then query machines or locations within that region. All endpoints return clean JSON with no authentication needed.

Available Data

Pinball Map data via REST API

Example Response

JSON Response
{
  "status": "success",
  "data": {
    "result": "Data from Pinball Map",
    "description": "A crowdsourced map of public pinball machines",
    "timestamp": "2025-01-15T10:00:00Z"
  }
}

Field Reference

id Unique identifier for the location.
name Name of the venue or bar where machines are located.
street Street address of the venue.
lat Latitude coordinate of the venue.
lon Longitude coordinate of the venue.
num_machines Number of pinball machines currently reported at this location.

Implementation Example

Request
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://pinballmap.com/api/v1/docs";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data);

What Can You Build?

Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.

Common Errors & Troubleshooting

404 Not Found for region slug The region name you used does not match the expected slug format.
Fetch the full list of regions from https://pinballmap.com/api/v1/regions.json and use the name field as your slug.
Empty locations array There may be no mapped pinball machines in the specified region yet.
Try a larger or nearby region. The API is community-driven, so rural areas may have sparse data.
CORS error in browser Some browser environments block cross-origin requests to external APIs.
Test with curl or a server-side script first. The API does support CORS, but your environment may need a proxy.

Measured Score Breakdown

Live HTTP request to the API endpoint

Reachability 30/30
Speed 5/20
Security 15/15
Developer XP 20/20
Reliability 15/15
Endpoint Response Time 1319ms

Fully tested on Jul 23, 2026

Technical Specifications

Auth No Auth
HTTPS REQUIRED
CORS YES
Category Geocoding
Difficulty Beginner
Verified: 2026-04-04

Related Tags

Similar APIs

View All →