# Romny Copy Trade V2 - Single Wallet Profile & Recent Trades

> Romny Copy Trade V2 - Single Wallet Profile & 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).

Fetches a single EVM wallet's copy-trade profile and its recent on-chain trades from the Romny Copy Trade V2 system

## Facts

- Endpoint: GET https://api.romny.dpdns.org/v1/copy-trade-v2/wallet
- 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-single-wallet-profile-recent-trades-533d0fc1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8aY7Q3pa1cfDlscAoHuUV

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-single-wallet-profile-recent-trades-533d0fc1
```

Example prompt: Pull up the copy-trade profile and last 30 recent trades for wallet 0x1234abcd... from Romny Copy Trade V2 so I can see its score and trading history.

## When to prefer this

Use this endpoint when you need detailed profile and trade history for a single specific EVM wallet within the Romny Copy Trade V2 system. Prefer this over the pool-level endpoints when you already have a target wallet address and want its individual score, PnL, and recent trades rather than a broad pool snapshot.

## Known failure modes

- Missing or invalid EVM wallet address returns a validation error
- Wallet address not found in the copy-trade system returns empty or null profile
- recent_limit out of range (outside 1-50) may return an error or be clamped to default
- Payment not completed (x402 flow) results in 402 response blocking data access
- Network timeout or upstream data unavailability results in 5xx error

## How this service works

Copy-trade v2 single-wallet profile and recent trades

## Output

Returns the wallet's copy-trade profile including its score, PnL metrics, and a list of recent on-chain trades (up to 50, default 20), providing a snapshot of its trading performance within the Romny Copy Trade V2 system.

## 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": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "EVM wallet address (0x...)"
      },
      "recent_limit": {
       "type": "string",
       "description": "Recent trades to include (1-50, default 20)"
      }
     }
    }
   },
   "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-single-wallet-profile-recent-trades-533d0fc1/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)
