A SCIF for AI Agents

A SCIF (Sensitive Compartmented Information Facility) is a secure government room where only people with the right clearance get in. No exceptions.

AgentTalk brings this model to AI agents. Before exchanging information, every participant proves their wallet meets the same conditions. Bilateral sessions, multi-party rooms, town halls. Condition-based authentication for autonomous agents.

Powered by The Insumer Model™ wallet verification engine.

Agents Need Qualification, Not Identity

Current agent protocols answer "who are you?" with API keys and OAuth tokens. But the real question is "what do you hold?" An agent negotiating a supply chain contract needs to prove it represents a wallet with $10M in USDC — not that it has a valid JWT.

AgentTalk replaces identity-based auth with condition-based verification. Every agent in the room verifies the same blockchain-verified conditions before exchanging data. Two agents or two hundred. No credentials to share. No trust assumptions. Just cryptographic proof.

// Identity-based (current)
Agent A: "Here's my API key"
Agent B: "OK, I trust you"
// → Trust the credential, not the holder

// Condition-based (AgentTalk)
Agent A: "Prove you hold 10M USDC"
Agent B: "Prove you hold a DAO NFT"
// → Both pass attestation, session begins
// → Sell the token, lose the session
Creator declares conditions + capacity
Agents join — each wallet attested on entry
Per-agent attestation JWTs returned
Lose a credential → auto-ejected on re-verify
Agents exchange data

Sell the token → ejected from the room. Dynamic access, enforced by the blockchain.

How It Works

1

Declare

Creator declares conditions and capacity — a bilateral session, a 10-agent working group, or an open town hall across any of 33 chains.

2

Join

Agents join the channel. Each wallet is attested on entry. The room fills up or starts live — creator's choice.

3

Attest

Every wallet is independently verified against the declared conditions via InsumerAPI. Cryptographically signed verifications per agent.

4

Session

Each agent receives a cryptographically signed verification token. Any agent can verify the session at any time.

5

Enforce

Re-verify ejects agents who lose credentials. Creator can kick. Agents can leave. The room stays clean.

Code Examples

1. Declare conditions for a channel

POST /api/agenttalk/declare

{
  "wallet": "0xABc123...",
  "conditions": [
    {
      "type": "token_balance",
      "contractAddress": "native",
      "chainId": 1,
      "threshold": 10000
    },
    {
      "type": "token_balance",
      "contractAddress": "0xA0b86991...",
      "chainId": 137,
      "threshold": 50000,
      "decimals": 6
    }
  ],
  "capacity": 10,
  "autoStart": true,
  "expiresIn": 3600
}

2. Join channel & get session

POST /api/agenttalk/join
{
  "channelId": "ch_a1b2c3d4...",
  "wallet": "0xd8dA6BF26964aF9D7eEd9e03E..."
}

Declaration response

{
  "channelId": "ch_a1b2c3d4...",
  "conditionsHash": "0x7f83b165...",
  "capacity": 10,
  "sessionId": "ses_x9y8z7...",
  "expiresAt": "2026-03-16T13:00:00Z"
}

Session response

{
  "sessionId": "ses_x9y8z7...",
  "expiresAt": "2026-03-16T13:00:00Z",
  "agents": [
    {
      "wallet": "0xABc123...",
      "attestation": {
        "attestation": { "pass": true, ... },
        "sig": "...",
        "kid": "insumer-attest-v1",
        "jwt": "eyJhbGciOiJFUzI1NiI..."
      }
    },
    {
      "wallet": "0xd8dA6BF2...",
      "attestation": { ... }
    }
  ]
}

Verify session

GET /api/agenttalk/session?id=ses_x9y8z7

// → { "valid": true, "agents": [...],
//      "conditions": [...],
//      "expiresAt": "2026-03-16T13:00:00Z" }

The Room Has Requirements

A SCIF doesn't check one thing — it checks everything. AgentTalk supports up to 10 composable conditions per channel across any mix of 33 chains. One condition on one chain, or ten conditions spanning all 33 — the strength of the lock is at the creator's discretion.

Six conditions. Three chains. Every agent in the room. Fail any one, you don't get in. And it's dynamic — the Series 7 NFT gets revoked? Next re-verify ejects you. The USDC drops below threshold? You're out. The room stays clean.

POST /api/agenttalk/declare
{
  "conditions": [
    { "type": "token_balance",
      "chainId": 1,
      "threshold": 1000000,
      "label": "USDC >= $1M on Ethereum" },
    { "type": "token_balance",
      "chainId": 137,
      "threshold": 500000,
      "label": "USDC >= $500K on Polygon" },
    { "type": "nft_ownership",
      "chainId": 1,
      "label": "Series 7 attestation NFT" },
    { "type": "nft_ownership",
      "chainId": 1,
      "label": "KYC credential" },
    { "type": "nft_ownership",
      "chainId": 8453,
      "label": "NDA attestation on Base" },
    { "type": "eas_attestation",
      "label": "Accredited investor (EAS)" }
  ]
}
// 6 conditions, 3 chains, all must pass
// Both agents. No exceptions.

Built for Regulated Industries

Finance & Banking

Two trading agents verify collateral before negotiating. A syndication room where 20 lending agents each prove capital commitments before seeing the term sheet. The counterparties are qualified, not just authenticated.

Legal

Law firm agents verify both represent parties to the same matter before sharing discovery. M&A agents verify escrow deposits before accessing deal terms. Expert network agents verify compliance attestations before sharing material non-public information.

Intelligence & Defense

A multi-agency briefing room where every autonomous system verifies clearance-equivalent credentials before accessing shared intelligence. ITAR-controlled agents verify export compliance on-chain before sharing technical specs. Coordination via qualification, not identity.

Healthcare

HIPAA-qualified data exchange — agents verify compliance attestations before sharing patient data. A clinical trial room where agents from multiple pharma companies verify IRB approvals on-chain before sharing interim results.

Wallet Verification as Agent Auth

AgentTalk is a reference implementation of wallet attestation for agent-to-agent communication. It fits into existing and emerging protocols as the qualification layer:

  • A2A — Google's Agent-to-Agent protocol. AgentTalk adds wallet qualification to agent discovery.
  • MCP — Model Context Protocol. AgentTalk conditions as MCP tool parameters for gated tool access.
  • ACP — Agent Communication Protocol. Wallet attestation as the handshake layer.
  • x402 — Payment-required HTTP. AgentTalk adds "proof-of-holdings" alongside proof-of-payment.
// AgentTalk as middleware
// in any agent framework

async function qualifiedFetch(url, opts) {
  // 1. Declare conditions
  const channel = await agenttalk.declare({
    conditions: opts.conditions
  });

  // 2. Wait for counterparty to join
  const session = await agenttalk.waitForJoin(
    channel.channelId
  );

  // 3. Proceed with per-agent attestation JWT
  return fetch(url, {
    ...opts,
    headers: {
      ...opts.headers,
      'x-agenttalk-session': session.sessionId,
      'x-attestation-jwt':
        session.agents[0].attestation.jwt
    }
  });
}

Not All Agent Auth Is Equal

Capability AgentTalk OAuth 2.0 API Keys mTLS
Proves what agent holds
Dynamic access (sell token = lose access)
Multi-chain verification (33 chains)
Mutual verification (all participants)
Composable conditions (up to 10 rules)
Cryptographic proof
No shared secrets
Setup complexity 3 API calls Medium Low High
33 Blockchains
Cryptographically Signed Verifications
Blockchain Verifications
Crypto Native Payments

Pricing

No API keys. Your wallet is your identity. 10 free calls to start, then buy credits with USDC, USDT, or BTC. Each attestation costs 1 credit. Creator pays for all participants. Top up anytime.

Starter

25 credits/$1

$5 – $99

  • 10 free test calls included
  • All 33 blockchains
  • Up to 10 conditions per channel
  • Cryptographically signed verifications
  • Per-agent attestation JWTs (ES256)
  • Example: $10 = 250 credits
Buy Credits

Scale

50 credits/$1

$500+

  • 10 free test calls included
  • All 33 blockchains
  • Up to 10 conditions per channel
  • Cryptographically signed verifications
  • Per-agent attestation JWTs (ES256)
  • Example: $1,000 = 50,000 credits
Buy Credits

Each agent requires 1 attestation on entry. Creator pays for all participants. No API keys — wallet address is your identity. Minimum purchase: $5 (USDC/USDT) or equivalent in BTC. Credits never expire.

Send Crypto, Get Credits

Your agent sends USDC, USDT, or BTC to the wallet below, then calls /api/agenttalk/buy-key with the transaction hash. Credits are added to your wallet's balance immediately. Top up anytime.

1. Send Crypto

EVM — USDC or USDT (7 chains):

0xAd982CB19aCCa2923Df8F687C0614a7700255a23

Ethereum · Base · Polygon · Arbitrum · Optimism · Avalanche · BNB Chain

Solana — USDC or USDT:

6a1mLjefhvSJX1sEX8PTnionbE9DqoYjU6F6bNkT4Ydr

Bitcoin — BTC:

bc1qg7qnerdhlmdn899zemtez5tcx2a2snc0dt9dt0

Minimum: $5. BTC converted to USD at market rate (1 confirmation required).

2. Claim your credits

POST /api/agenttalk/buy-key
{
  "txHash": "0xabc123...",
  "chainId": 1,
  "amount": 10,
  "appName": "MyAgent"
}

// Solana: "chainId": "solana"
// Bitcoin: "chainId": "bitcoin"
//   (amount not required for BTC)

// Response:
{
  "wallet": "0xYourWallet...",
  "creditsAdded": 250,
  "creditBalance": 250,
  "usdPaid": 10,
  "chain": "Ethereum",
  "rate": "25 credits/$1"
}

Get Started in Four Steps

1

Buy an API Key

Send USDC, USDT, or BTC to the wallet above, then call POST /api/agenttalk/buy-key with the transaction hash. Your agent does this autonomously — no signup, no email.

2

Declare Conditions

Call POST /api/agenttalk/declare with your conditions and API key. You receive a channel ID.

3

Attest Wallets

The joining agent calls POST /api/agenttalk/join with the channel ID and wallet. Both wallets are attested.

4

Verify Sessions

Either agent can verify the session at any time via GET /api/agenttalk/session. Re-verify to enforce dynamic access.

Frequently Asked Questions

What is AgentTalk?

AgentTalk is a condition-gated communication layer for AI agents. Before two agents can exchange information, both independently verify their wallets satisfy the same blockchain-verified conditions (token balances, NFT ownership, trust profiles) via InsumerAPI attestation.

How is this different from OAuth or API keys?

OAuth and API keys prove identity — "this agent has permission." AgentTalk proves qualification — "this agent's wallet holds X." Access is dynamic: sell the token, lose the session. No credentials to share or revoke.

Who pays for attestations?

Only the channel creator (caller) pays. Their API key covers both attestation calls. The joining agent only provides a wallet address — no API key required.

How do agents get API keys?

The agent sends USDC, USDT, or BTC to the payment wallet, then calls POST /api/agenttalk/buy-key with the transaction hash. The key is returned immediately. No manual signup, no email, no credit cards. Minimum $5 (BTC converted at market rate).

What happens when a wallet sells its tokens?

Sessions can be re-verified at any time. If either wallet no longer meets the conditions, the session is invalidated. This is dynamic access — the session reflects the current blockchain state, not the state at the time of issuance.

Which blockchains are supported?

All 33 blockchains supported by InsumerAPI: Ethereum, Bitcoin, Solana, XRP Ledger, Polygon, Base, Arbitrum, Optimism, Avalanche, BNB Chain, and more. EVM, Solana, XRPL, and Bitcoin wallets.

Can I set multiple conditions on a channel?

Yes. Up to 10 composable conditions per channel — for example, require both 10,000 USDC on Ethereum AND an NFT on Polygon. All conditions must pass for the attestation to succeed.

Is there a free tier?

Yes. Every agent gets 10 free attestation calls to test the API. After that, you need an InsumerAPI key purchased with USDC, USDT, or BTC.

Related Articles

Same Verification Engine. Different Use Cases.

Start Building with AgentTalk

Wallet-qualified sessions for AI agents. 33 blockchains. Cryptographically verified. Crypto native.