Quickstart
Install your SDK, create a client and start an agent run.
npm install @nexora/sdkimport { Nexora } from '@nexora/sdk'
const client = new Nexora({ apiKey: process.env.NEXORA_KEY })
const run = await client.agents.run({
agent: 'researcher',
input: { company: 'Arcwell' }
})Authentication
Use bearer tokens on the server. Never expose production secrets in client-side JavaScript.
Agents
Agents combine instructions, tools, context and evaluation criteria into a reusable unit of work.
Runs
Runs expose status, output, usage and step-level observability.
Webhooks
Subscribe to completion, approval and failure events to connect agent runs back to your application.