A rolling 60-minute feed of Solana memecoin launches as one JSON object. POST /v1/launches with an optional dex filter (pumpfun, pumpswap, meteora) plus limit, age, volume, liquidity and sort options; each launch carries pool and token address, venue, price, FDV, volume, transaction count and drawdown. Point-in-time and served from cache. Pay per request in USDC; no account, no API key.
Endpoint
POST https://test.agent.pocket.network/v1/meme-watch
Price per call
$0.005 USD
Networks payable on
Base Sepolia (eip155:84532)
Protocol
rest
Calling it
The first call returns 402 Payment Required with the terms. Sign for those terms and retry the same request with the payment attached.
This service declares its response shape in prose rather than as fields, so there is nothing more specific to sample.
{}
Try it
Make one real paid call from your own wallet — about $0.005 on Base Sepolia (eip155:84532). The wallet signs; nothing here holds a key. You'll see exactly what the service answers.
No browser wallet found. Install MetaMask or Coinbase Wallet to try a call here.
Supported methods
Methods the registry lists for this service. The portal forwards any call as sent; the supplier decides what it answers, and a delivered answer is settled.
Methods Meme Watch accepts, and whether each reads or writes.
Method
Effect
GET /healthz
read
GET /v1/capabilities
read
GET /v1/openapi.json
read
GET /v1/version
read
POST /v1/launches
read
Schemas
Published by the service itself. The example above is generated from these.
Request schema
{
"type": "object",
"description": "Filters for the launch feed; every field is optional and read from the POST body.",
"properties": {
"dex": {
"type": "string",
"enum": [
"pumpfun",
"pumpswap",
"meteora_daam_v2",
"meteora_dbc"
],
"description": "Venue filter; omit for every venue."
},
"limit": {
"type": "integer",
"description": "Maximum launches to return."
},
"max_age_minutes": {
"type": "integer",
"description": "Only launches newer than this many minutes."
},
"min_txns": {
"type": "integer",
"description": "Minimum since-launch transaction count."
},
"min_volume_usd": {
"type": "number",
"description": "Minimum since-launch volume in USD."
},
"min_liquidity_usd": {
"type": "number",
"description": "Minimum quote-side liquidity in USD."
},
"named_only": {
"type": "boolean",
"description": "Exclude launches not yet named."
},
"sort": {
"type": "string",
"description": "Sort key for the feed."
},
"format": {
"type": "string",
"enum": [
"json",
"csv"
],
"default": "json",
"description": "Response format; csv rides in a csv string field."
}
},
"required": []
}
Response schema
{
"type": "object",
"description": "For POST /v1/launches, a JSON object with window_minutes, as_of, complete_before, and a launches array; when format is csv the table rides in a `csv` string field, always last. Results are point-in-time and two suppliers may legitimately differ. The exact shape is the service's own and is not pinned here; errors return a JSON object with an `error` field, and the GET routes return their own small JSON documents."
}
Request body used in the example: {
"dex": "pumpfun",
"limit": 0,
"max_age_minutes": 0,
"min_txns": 0,
"min_volume_usd": 0,
"min_liquidity_usd": 0,
"named_only": true,
"sort": "string",
"format": "json"
}