Skip to content
Docs

APIs & SDKs, opinionated and complete.

REST, GraphQL, and idiomatic SDKs for TypeScript, Python, Go and Swift. Every endpoint has a curl example, a stub server, and a recorded HAR for replay.

VEXOCORE AI

AI API

Model gateway, evals, fine-tunes — the AI/ML surface area.

ai.ts
// Authenticate and call the AI gateway
const client = new VexocoreClient({
apiKey: "vx_live_***",
});
const result = await client.ai.complete({
task: "classify",
input: ticket.body,
});
VEXOCORE CYBER

SOC API

Stream detections, push IOCs, run playbooks, fetch the threat-intel feed.

events.sh
# Stream events from the SOC firehose
curl "https://api.vexocore.io/v1/cyber/events" \
-H "Authorization: Bearer $VX_KEY" \
-H "Accept: text/event-stream"
VEXOCORE TECH

Edge runtime

Functions, queues, KV, durable objects across multi-region edge. Fast deploys.

worker.ts
// Deploy a function to multi-region edge runtime
export default {
async fetch(req, env) {
return new Response("hello from the edge");
},
};
SDKs

Idiomatic, first-class.

Generated from the same OpenAPI spec, then hand-polished. Identical behaviour, idiomatic ergonomics, type-safe.

npm i @vexocore/sdkpip install vexocorego get vexocore.io/sdkpod ‘Vexocore’