Authentication

Create a key for your project here. Attach your key to API requests via the api-key header. Requests must be authenticated, and will fail without an active token.

curl -X POST \
'https://api.oneai.com/api/v0/pipeline' \
-H 'api-key: <YOUR-API-KEY-HERE>' \
const { OneAI } = require("oneai");
const oneai = new OneAI("<YOUR-API-KEY-HERE>");
import oneai
oneai.api_key = "<YOUR-API-KEY-HERE>"