Adrata Developers
SDKs
Typed SDKs for core Adrata workflows across companies, people, opportunities, actions, buyer rooms, intro paths, tasks, tools, webhooks, and streams where supported by the API contract.
Install
npm install @adrata/sdk
pip install adrataCore GTM workflow
const company = await adrata.companies.create({ name: 'Acme', domain: 'acme.com' });
const person = await adrata.people.create({ firstName: 'Jane', lastName: 'Doe', companyId: company.data.id });
const deal = await adrata.opportunities.create({ name: 'Acme expansion', companyId: company.data.id, stage: 'mapping' });
await adrata.network.createIntroRequest({ targetPersonId: person.data.id, introducerUserId: 'user_connector', reason: 'Warm path to economic buyer' });Generated and ergonomic
SDKs are generated from `openapi.json` and can be wrapped with helpers for pagination, webhooks, streaming responses, problem+json errors, and retry metadata.
Coverage
The SDKs focus on common workflows: companies, people, opportunities/deals, actions, buyer rooms, intro/network workflows, agent tasks, tool discovery, search, webhook verification, cursor pagination, rate-limit metadata, and typed API errors.