Documentation

Developer Docs

Everything you need to integrate with EVSEBridge. Guides, API reference, SDKs, and more.

Getting Started

Connect your first charge point in under 5 minutes.

REST API Reference

Complete API reference with request/response examples.

OCPP Messages

Supported OCPP operations and how to use them.

Webhooks

Real-time event notifications for your application.

SDKs & Libraries

Official client libraries for popular languages.

Authentication

API keys, OAuth 2.0, and client certificates.

Data Models

Schema definitions for all API resources.

Configuration

OCPP configuration keys and charge point settings.

API Reference

GET/v1/charge-points
POST/v1/charge-points
GET/v1/sessions
POST/v1/sessions
DELETE/v1/sessions/:id
GET/v1/transactions
POST/v1/commands/reset
POST/v1/commands/unlock
Example Request
GET /v1/charge-points
Authorization: Bearer sk_live_...
Content-Type: application/json

// Response
{
  "data": [
    {
      "id": "cp_abc123",
      "identity": "CP-001",
      "status": "Available",
      "ocppVersion": "1.6"
    }
  ],
  "total": 247
}