1 Select Resource

AlgorandNews.ai — Algorand-focused news platform. Manage posts, drafts, and content.

2 Configure Permissions

Select which actions the agent can perform. Unchecked = forbidden.

3 Set Constraints

4 Agent Binding

Security: The token will be cryptographically bound to this agent ID. No other agent can use it.

5 Generate Token

Token Generated Successfully

Asset ID

Bound Agent

Expires

Secure Handoff

🔗
One-Time Secret Link
Expires after single view. Most secure for remote handoff.
📋
Copy Credentials
Copy asset ID and agent ID to clipboard.
📖
Integration Code
View code snippets for agent integration.

🔐 One-Time Secret Link

⚠️ This link expires after being viewed once or after 1 hour.

// Add these headers to agent requests
{
  "X-TokenForm-Asset": "",
  "X-TokenForm-Agent": ""
}

// Example fetch request
fetch('https://algorandnews-api.jbinder.workers.dev/drafts', {
  headers: {
    'X-TokenForm-Asset': '',
    'X-TokenForm-Agent': ''
  }
})