Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.coval.dev/llms.txt

Use this file to discover all available pages before exploring further.

Coval ships first-class typed SDKs in two languages, generated from the same OpenAPI specs that power the API reference:
  • TypeScript@coval/sdk on npm. Production-grade today, with lowercase x-api-key auth, retry-with-backoff, async pagination, and typed errors.
  • Pythoncoval-sdk on PyPI. Demo-grade today — the generated client without the wrapper layer. Parity work is in flight.

Install

npm install @coval/sdk

Quick start

import { CovalClient } from '@coval/sdk';

const coval = new CovalClient({ apiKey: process.env.COVAL_API_KEY! });
const page = await coval.agents.listAgents({ pageSize: 50 });
console.log(page.agents);
For the full reference — auth, errors, retries, pagination, customization, and the regeneration workflow — see SDKs in the API reference.