HYRE DeFi API · Live on Mainnet
API Playground
Execute any of 22 DeFi endpoints. See the MPP 402 payment challenge.
No API keys — payment is the only gate.
Select Endpoint
Trenchers
Traders
LPs
DeFi + Meta
Request Details
Endpoint
GET/trenches/new-tokens
Cost
$0.008 USDC
Description
Real-time PumpFun launches + AI snipe signal
Resolved URL
https://mpp.hyreagent.fun/trenches/new-tokens
hyre-playground — mainnet — GET /trenches/new-tokens
0 entries
╦ ╦╦ ╦╦═╗╔═╗
╠═╣╚╦╝╠╦╝║╣
╩ ╩ ╩ ╩╚═╚═╝Select an endpoint and click Execute.
Paid endpoints return HTTP 402 with an MPP payment challenge.
Complete payment with mppx SDK to receive data.
https://mpp.hyreagent.funMPP · Solana Mainnet
⚡ Completing Payment
When you execute a paid endpoint, the server returns HTTP 402 with an MPP payment challenge in the WWW-Authenticate header. To complete payment and receive data, use mppx CLI or any MPP-compatible agent (e.g. HYRE Agent skill).
The browser cannot sign Solana transactions directly — you need an MPP client that manages wallet signing and payment proof headers.
Integrate with mppx
client.ts
import { Mppx, solana } from '@anthropic/mppx'
// Create an MPP client with Solana payment method
const mppx = Mppx.create({
methods: [solana.charge({ signer })],
})
// SDK handles 402 → sign → retry automatically
const res = await mppx.fetch(
'https://mpp.hyreagent.fun/trenches/new-tokens'
)
// Data includes AI insights, signal, and confidence
const { data, insight, signal } = await res.json()terminal
# Install mppx CLI
$ npm install -g mppx
# Call any HYRE endpoint — payment handled automatically
$ mppx fetch https://mpp.hyreagent.fun/trenches/new-tokens
# Or use the /ask meta-endpoint for natural language
$ mppx fetch -X POST -d '{"question":"best LP pools?"}' https://mpp.hyreagent.fun/ask