Payment Info
FreeGET /api/payment/infoThe /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.