LIVE
ANTHROPICOpus 4.7 benchmarks published2m ago
CLAUDEOK142ms
OPUS 4.7$15 / $75per Mtok
CHATGPTOK89ms
HACKERNEWSWhy has not AI improved design quality the way it improved dev speed?14m ago
MMLU-PROleader Opus 4.788.4
GEMINIDEGRADED312ms
MISTRALMistral Medium 3 released6m ago
GPT-4o$5 / $15per Mtok
ARXIVCompositional reasoning in LRMs22m ago
BEDROCKOK178ms
GEMINI 2.5$3.50 / $10.50per Mtok
THE VERGEFrontier Model Forum expansion announced38m ago
SWE-BENCHleader Claude Opus 4.772.1%
MISTRALOK104ms
ANTHROPICOpus 4.7 benchmarks published2m ago
CLAUDEOK142ms
OPUS 4.7$15 / $75per Mtok
CHATGPTOK89ms
HACKERNEWSWhy has not AI improved design quality the way it improved dev speed?14m ago
MMLU-PROleader Opus 4.788.4
GEMINIDEGRADED312ms
MISTRALMistral Medium 3 released6m ago
GPT-4o$5 / $15per Mtok
ARXIVCompositional reasoning in LRMs22m ago
BEDROCKOK178ms
GEMINI 2.5$3.50 / $10.50per Mtok
THE VERGEFrontier Model Forum expansion announced38m ago
SWE-BENCHleader Claude Opus 4.772.1%
MISTRALOK104ms
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": "[email protected]"
  },
  "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, refunds, and disputes per the Terms of Service at /terms.

Related endpoints