neww.ai Developer Portal

Build on top of the same engines that power neww.ai. Generate an API key, copy a curl sample, or download the OpenAPI spec to scaffold your client.

1. Get a key

API keys are scoped per workspace. Create one in/portal/keys.

2. Read the spec

The full surface lives at/api/openapiand is current with main on every deploy.

3. Make a call

Authenticate withAuthorization: Bearerand your key.

Sample call

# Create an agent run
curl -X POST https://neww.ai/api/v1/agents/runs \
  -H "Authorization: Bearer $NEWW_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "agentId": "research-agent",
    "task": "Summarize this week's revenue trend",
    "stream": true
  }'

Reference

Embedded Redoc renders the live OpenAPI spec. Updates within 60 seconds of any route change.

SDKs

  • npm i @neww/sdk — TypeScript / JavaScript client (auto-generated from the spec).
  • pip install neww — Python client (auto-generated from the spec).
  • Raw OpenAPI 3.1 spec — generate any client with openapi-generator.