LIVE
OPUS 4.7$15 / $75per Mtok
SONNET 4.6$3 / $15per Mtok
GPT-5.5$10 / $30per Mtok
GEMINI 3.1$3.50 / $10.50per Mtok
SWE-BENCHleader Claude Opus 4.772.1%
MMLU-PROleader Opus 4.788.4
VALS FINANCEleader Opus 4.764.4%
AFTAv1.0 whitepaper live at /whitepaper
OPUS 4.7$15 / $75per Mtok
SONNET 4.6$3 / $15per Mtok
GPT-5.5$10 / $30per Mtok
GEMINI 3.1$3.50 / $10.50per Mtok
SWE-BENCHleader Claude Opus 4.772.1%
MMLU-PROleader Opus 4.788.4
VALS FINANCEleader Opus 4.764.4%
AFTAv1.0 whitepaper live at /whitepaper
All systems operational0 AI providers monitored, polled every 2 minutes
Live status
All endpoints

Payment Info

Free
GET /api/payment/info

The /api/payment/info endpoint returns everything an agent needs to validate before sending USDC: wallet address, asset (USDC contract on Base), credit-per-USD pricing, volume bundles, both supported flows (credits and x402 fallback), and the operator legal entity (Pizza Robot Studios LLC, California). Cross-check the wallet address here against the other three published locations before sending funds.

When to use this endpoint

Always call this before initiating a credit purchase. The response is the canonical source of truth for the wallet address and current pricing.

Example response

{
  "ok": true,
  "operator": {
    "legal_entity": "Pizza Robot Studios LLC",
    "jurisdiction": "California, USA",
    "contact": "evan@tensorfeed.ai"
  },
  "wallet": {
    "address": "0x549c82e6bfc54bdae9a2073744cbc2af5d1fc6d1",
    "currency": "USDC",
    "network": "base",
    "contract": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "decimals": 6
  },
  "pricing": { "base_rate": "50 credits per $1 USDC ($0.02 per credit)", ... }
}

Code samples

Python SDK

from tensorfeed import TensorFeed

tf = TensorFeed()
info = tf.payment_info()
print("Send USDC to:", info["wallet"]["address"])
print("Operator:", info["operator"]["legal_entity"])

TypeScript SDK

import { TensorFeed } from 'tensorfeed';

const tf = new TensorFeed();
const info = await tf.paymentInfo();
console.log('Wallet:', info.wallet.address);

FAQ

How do I verify the TensorFeed wallet address?

Cross-check the address across four published locations: /api/payment/info (this endpoint), /llms.txt, the GitHub README at github.com/RipperMercs/tensorfeed, and the @tensorfeed bio on X. If any of the four disagree, do not send funds.

What is the operator legal entity?

Pizza Robot Studios LLC, a California limited liability company. They are the legal counterparty for premium-tier purchases and disputes per the Terms of Service at /terms. Credit purchases are non-refundable per Section 17.5.

Related endpoints