Skip to content

API Overview

Use the API docs when you are wiring Meterry into your own backend systems.

These pages are kept separate from the product guides so API references, request examples, and integration contracts can grow without mixing into the main docs navigation. Each endpoint has its own page with request fields, examples, and response shape.

All API endpoints use the following base URL:

https://api.meterry.com

Endpoints listed in these docs are relative to this base. For example, POST /v1/projects/:project_id/raw-events/:id/process resolves to https://api.meterry.com/v1/projects/:project_id/raw-events/:id/process.

Meterry uses API keys for authentication. Each API key is scoped to a project and carries a set of permissions.

Send the key as a bearer token in the Authorization header:

Authorization: Bearer <api-key-secret>
Content-Type: application/json

You can create and manage API keys from the Portal under Project > API keys. Keys are shown only once at creation time — store the secret securely in your backend environment.

Never expose API keys in browser or mobile client code. All API calls should originate from a trusted backend service.