RoboMap Logo

Robomap Cloud API

Welcome to the Robomap Cloud API — the universal interface for mapping, matching, and managing your field service data. This API enables integrations across home maintenance, mobility, industrial services, and beyond.

Overview

Base URL: https://api.robomap.ai/v1/

All requests must be made over HTTPS. Responses are returned in JSON format.

Authentication

Authenticate using your API key:

Authorization: Bearer YOUR_API_KEY

You can generate or manage your API keys in the RoboMap Cloud Dashboard.

Endpoints

Method Endpoint Description
GET /projects List all active projects.
POST /projects Create a new project.
GET /projects/{id} Retrieve a specific project by ID.
POST /match Perform AI-based technician or asset matching.
GET /analytics/usage Fetch usage statistics for your account.

Example Request

curl -X POST https://api.robomap.ai/v1/match \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
  "service": "maintenance",
  "location": "Barcelona, Spain",
  "requirements": ["electrician", "certified"]
}'

Example Response

{
  "status": "success",
  "results": [
    {
      "id": "tech_123",
      "name": "Carlos R.",
      "distance_km": 2.4,
      "rating": 4.8
    }
  ]
}