Skip to main content

What is Stewrd?

Stewrd is a managed API that actually does things. Research, documents, code execution, file processing — your app sends a message, gets finished work back. No agent frameworks. No infrastructure. No prompt engineering. Just results.

Base URL

https://api.stewrd.dev
v1 — Stable

How it works

1

Send a message

POST a message to /v1/agent with your API key. Optionally specify which capabilities to use.
2

Agent does the work

Stewrd routes your request through the right tools — research, code execution, document generation, and more.
3

Get finished work back

Receive a JSON response with the agent’s message, any generated files, and usage info.

Quick example

curl -X POST https://api.stewrd.dev/v1/agent \
  -H "Authorization: Bearer sk-stw_your_key" \
  -H "Content-Type: application/json" \
  -d '{"message": "What is the capital of France?"}'

What’s next?