My App
Api
GET
/usage/summary

Aggregate usage across all projects in the organization.

x-api-key<token>

API key from the LangRelay dashboard. Org-level keys can access all projects; project-scoped keys are restricted to one project.

In: header

Query Parameters

period*string

Response Body

application/json

curl -X GET "https://api.langrelay.com/v1/usage/summary?period=2026-03"
{
  "organizationId": "string",
  "period": "string",
  "totalWordCount": 0,
  "totalTranslationCount": 0,
  "byProject": [
    {
      "projectId": "string",
      "wordCount": 0
    }
  ]
}