ApiAtlas.dev
Interactive API Navigation

Explore Every
Endpoint.

The interactive API exploration tool that auto-discovers and maps every endpoint in your entire backend.

Point ApiAtlas at your codebase or live traffic, and watch it build a complete, navigable map of every route, parameter, and response schema.

3.2M
Endpoints Mapped
98.7%
Schema Accuracy
< 500ms
Discovery Time
47
Frameworks Supported
LIVE PREVIEW

See Your Entire API at a Glance

A complete, interactive map of every service, route, and schema -- navigable in real time.

API Explorer -- acme-platform
Connected
237 endpoints
Search endpoints, schemas, services... /
POST /auth/login
POST /auth/register
POST /auth/refresh
DEL /auth/logout
GET /auth/me
GET /users
GET /users/:id
POST /users
PUT /users/:id
PATCH /users/:id/role
DEL /users/:id
POST /payments/charge
GET /payments/:id
GET /payments/history
POST /payments/refund
GET /users users-service v2.4.1

Retrieves a paginated list of all users. Supports filtering by role, status, and registration date.

avg 45ms Bearer Token 1.2k req/min
Name Type Required Description
page integer optional Page number (default: 1)
limit integer optional Items per page (default: 25, max: 100)
role enum optional Filter: "admin" | "user" | "moderator"
status enum optional Filter: "active" | "suspended" | "pending"
sort string optional Sort field: "created_at" | "email" | "name"
Response Schema 200 OK
1 {
2 "data": [{
3 "id": "usr_k8x92mf",
4 "email": "alice@acme.io",
5 "name": "Alice Chen",
6 "role": "admin",
7 "status": "active",
8 "created_at": "2026-01-15T09:30:00Z"
9 }],
10 "meta": {
11 "total": 1284,
12 "page": 1,
13 "per_page": 25
14 }
15 }
CAPABILITIES

Everything You Need to Navigate

From auto-discovery to dependency mapping, the Explorer gives you a complete understanding of your API landscape.

Auto-Crawling

Automatically discovers all endpoints from your codebase, OpenAPI specs, or live traffic. No manual configuration needed.

$ atlas explore --source ./api
Scanning routes...
Found 237 endpoints across 8 services
Map generated in 1.3s

Schema Inference

Generates accurate request and response schemas from actual usage patterns, types, and validation rules in your code.

interface User {
id: string // auto-detected
email: string // validated
role: "admin" | "user"
}

Dependency Mapping

Visualizes which endpoints call which services, databases, and external APIs. Understand your entire call graph.

Dependency graph for POST /payments/charge
|- users-service /users/:id
|- stripe-api external
|- postgres payments_db
|- redis cache

Search & Filter

Find any endpoint instantly across hundreds of services. Filter by method, path, tag, response code, or any schema field.

method:POST path:payment|
3 results:
POST /payments/charge
POST /payments/refund
POST /payments/subscribe
HOW IT WORKS

Three Steps to Full Visibility

From your first command to a complete API map in under two minutes.

01

Point to Your Source

Give ApiAtlas a repo URL, an OpenAPI spec, or point it at live traffic. It handles REST, GraphQL, gRPC, and more.

$ atlas explore \
--source ./backend \
--framework express
02

AI Analyzes Everything

Our AI engine parses route definitions, middleware, types, validators, and actual traffic patterns to build a complete picture.

Analyzing codebase...
Parsing route handlers done
Extracting schemas done
Mapping dependencies done
Inferring auth done
03

Get Your Complete Map

Browse your interactive API map with full schemas, dependencies, and documentation. Export as OpenAPI, share with your team.

Explorer ready!
237 endpoints mapped
8 services discovered
52 schemas generated
Open at localhost:4000/explore

Works with your stack

Express FastAPI Spring Boot Django REST NestJS Rails Gin ASP.NET Hono GraphQL

Start Exploring

Get a complete map of your API in under two minutes. No credit card, no config files, no vendor lock-in.

$ curl -s https://apiatlas.dev/explore | sh