Skip to main content
The problem with AI agents in 2026 isn’t the model. It’s the context. Your agent produces useless output because it doesn’t know your architecture, your conventions, or how you work. Your context lives in CLAUDE.md in one repo, .cursor/rules in another, a Notion page nobody updates. Versuno is a single place to create, version, and serve the context that powers your AI agents.

Getting started in 2 minutes

1

Get your API key

Go to Settings → API in your dashboard and create a new API key.
2

Create your first asset

curl -X POST "https://versuno.ai/api/public/assets" \
  -H "Authorization: Bearer uk_live_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Summarize support ticket",
    "assetType": "prompt",
    "content": "Summarize the following support ticket in 2-3 sentences. Identify the core issue, the customer's emotional state, and the suggested resolution."
  }'
3

Fetch it back

Take the id from the response and retrieve the asset:
curl "https://versuno.ai/api/public/assets/{assetId}" \
  -H "Authorization: Bearer uk_live_your_api_key_here"

Next steps

API Guide

Authentication, quick start examples, error handling, and all key endpoints.

List assets

Fetch all your prompts, personas, and skills with filtering and pagination.

Create an asset

Create a new prompt, persona, context, system prompt, or skill.

Versioning

Save checkpoints and revert to any previous version of an asset.