# Romny Copy Trade V2 - Recent Trades

> Romny Copy Trade V2 - Recent Trades is a paid API for AI agents from api.romny.dpdns.org, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns recent trade activity from the Romny copy-trade v2 curated smart-wallet pool, optionally filtered by wallet address.

## Facts

- Endpoint: GET https://api.romny.dpdns.org/v1/copy-trade-v2/trades
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/romny-copy-trade-v2-recent-trades-5d963edc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6Y9MzvP9Sekpjs3tJnBqH

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability romny-copy-trade-v2-recent-trades-5d963edc
```

Example prompt: Pull the last 50 recent trades from the Romny copy-trade v2 smart-wallet pool so I can see what the curated wallets have been doing.

## When to prefer this

Use this endpoint when you need to monitor or analyze recent trade activity from the Romny copy-trade v2 curated smart-wallet pool. It is ideal for agents that track copy-trading signals, follow smart money wallets, or need a filtered view of on-chain trades by wallet address. Prefer it over snapshot endpoints when you need a time-ordered list of recent transactions rather than a point-in-time pool snapshot.

## Known failure modes

- Invalid limit value outside 1-200 range may return an error or default behavior
- Invalid or unrecognized wallet address may return an empty result set
- Payment not processed correctly may result in 402 response
- Service unavailable or pool data stale may return error or empty array

## How this service works

Recent trades from copy-trade v2 smart-wallet pool

## Output

A list of recent trade records from the copy-trade v2 smart-wallet pool, up to 200 entries. Each record likely includes trade details such as wallet address, asset traded, trade direction, timestamp, and size. Optionally filtered by a specific wallet address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "limit": {
       "type": "string",
       "description": "Max trades to return (1-200, default 50)"
      },
      "address": {
       "type": "string",
       "description": "Optional wallet address filter"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/romny-copy-trade-v2-recent-trades-5d963edc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.romny.dpdns.org](https://www.zero.xyz/host/api.romny.dpdns.org/llms.txt)
