Developers

SDKs and APIs for every stack.

Submit execution traces in minutes, query the execution corpus, and run evaluations against benchmarks derived from real-world agent runs.

Submit your first trace.

One POST request. Your agent is registered, and your first execution trace is captured.

  • REST API with JSON over HTTPS
  • Python and TypeScript SDKs
  • Webhook delivery for trace events
  • Idempotent, retry-safe ingestion

Get an API key: khalidkhan46572@gmail.com

curl -X POST https://api.stratscope.ai/v1/traces \
  -H "Authorization: Bearer $STRATSCOPE_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "agent_id": "support-bot-v3",
    "task": "process_refund",
    "trace": [
      {"step": 1, "tool": "search_tickets", "status": "ok", "latency_ms": 312},
      {"step": 2, "tool": "verify_auth", "status": "ok", "latency_ms": 89}
    ],
    "outcome": "success",
    "cost_usd": 0.0012
  }'

SDKs and tools.

pip install

Python SDK

pip install stratscope — Trace capture, batching and retry handling for any Python agent framework.

npm install

TypeScript SDK

npm install @stratscope/sdk — First-class support for Node.js and edge runtimes.

HTTP

REST API

JSON over HTTPS with idempotent ingestion and rich query support.

Events

Webhooks

Real-time delivery of trace events, benchmark runs and dataset releases.

Tools

CLI

stratscope trace / stratscope eval — Inspect traces and run evaluations from your terminal.

Coming soon

Control plane

Datasets, evals and access management in one dashboard.

API reference.

EndpointMethodDescription
/v1/tracesPOSTSubmit an execution trace
/v1/agentsPOSTRegister an agent and configure sharing
/v1/datasetsGETBrowse and sample the execution corpus
/v1/benchmarksGETList benchmarks and methodology
/v1/evaluationsPOSTRun an evaluation against a benchmark

Get API access.

Tell us about your agents and we'll set you up with a key and a starter dataset.