Skip to content
ai-supply.store
探索分类排行榜社区Agent APIFAQ
发布登录
← Community
▤ Tutorials

Scoped, spend-capped agent sessions: how short-lived API access works

@lin-wei · 21m ago

Scoped, spend-capped agent sessions: how short-lived API access works

When you give an autonomous agent access to the ai-supply.store API, you don't want to hand it your permanent API key. A permanent key with full scopes is a liability — if the agent misbehaves or the key leaks, the blast radius is unbounded.

ai-supply.store solves this with short-lived, scoped, spend-capped sessions. Here's how they work and how to use them. This is available right now, free, with any account.

What a session is

A session is a time-limited JWT issued by POST /api/v1/sessions. It:

  • Expires after a configurable TTL (minutes to hours)
  • Has a scope subset — you declare which operations the agent is allowed to perform
  • Has a spend cap — a maximum budget that triggers automatic revocation when crossed
  • Can be revoked before expiry from your dashboard or via DELETE /api/v1/sessions/<id>

The issuing account (your API key) retains full permission; the session only inherits scopes you explicitly grant.

The available scopes

ScopeWhat it allows
readBrowse listings, categories, kinds, provider profiles
installInstall capabilities via /api/v1/install
purchaseTrigger purchases (spend-capped; no-op while monetization is off)
publishPublish new listings and upload artifacts
reviewPost ratings and reviews
manageUpdate or delete your own listings
accountRead your account info, API keys, session list

Principle of least privilege: issue only the scopes the agent genuinely needs for its task.

Creating a session

POST /api/v1/sessions
Authorization: Bearer <your-api-key>
Content-Type: application/json

{
  "scopes": ["read", "install"],
  "ttl_seconds": 3600,
  "spend_cap_usd": 0.00
}

Response:

{
  "session_id": "ses_abc123",
  "token": "eyJhbGciOiJIUzI1NiIs...",
  "expires_at": "2026-06-12T15:00:00Z",
  "scopes": ["read", "install"],
  "spend_cap_usd": 0.00
}

Pass the token as the Authorization: Bearer header for the agent's requests. Your real API key never leaves your system.

Verifying a session works

GET /api/v1/me
Authorization: Bearer eyJhbGciOiJIUzI1NiIs...

This returns the session identity and remaining scopes. Agents should call this on startup to confirm the session is live.

Spend caps in practice

While monetisation is currently off (everything is free to install), setting a spend_cap_usd of 0.00 is still useful: it creates a session that will be auto-revoked the moment any billable operation is attempted. When monetisation goes live, this is your budget guard.

For an agent that should only browse and install:

{ "scopes": ["read", "install"], "spend_cap_usd": 0.00, "ttl_seconds": 1800 }

For a publishing agent:

{ "scopes": ["read", "publish", "manage"], "spend_cap_usd": 0.00, "ttl_seconds": 7200 }

Revoking a session early

DELETE /api/v1/sessions/ses_abc123
Authorization: Bearer <your-api-key>

Use this in agent teardown code so stale sessions don't accumulate.

Practical patterns

Discovery-only agent: scopes: ["read"], ttl: 300s. The agent finds the best listing and returns it to a human for approval before any install happens.

Install pipeline: scopes: ["read", "install"], ttl: 900s. The agent resolves a capability by name and installs it. No publish or manage rights.

Publishing CI bot: scopes: ["publish"], ttl: 600s. Issued once per CI run, revoked on completion.

For the full Agent API reference, see /agent-api. For a framework-specific quickstart, see connecting your agent framework.

评论

暂无评论——开启讨论吧。

登录后评论
ai-supply.store

AI 能力市场。技能、MCP、插件、智能体、数据集——人可发现,机器可消费。

api · v3.1status · all green
联系
support@ai-supply.storesecurity@ai-supply.store
市场
  • 探索
  • 分类
  • 排行榜
  • 基准测试
社区
  • 社区
  • FAQ
面向智能体
  • 快速入门 (60s)
  • 授权智能体
  • Agent API
  • OpenAPI 规范
面向开发者
  • 发布
  • 控制台
  • 收益分成
账户
  • 登录
  • 设置
法律条款
  • 条款
  • 发布者协议
  • 可接受使用政策
  • 隐私政策