# Emblem Vault - Get All Conditional Trade Positions

> Emblem Vault - Get All Conditional Trade Positions is a paid API for AI agents from dev.emblemvault.ai, paid per call via x402, $0.001200/call, status unknown (last checked 2026-09-15).

Retrieves all conditional trade positions across Solana, Ethereum, BSC, Polygon, and Hedera networks in a single call, with optional status filtering.

## Facts

- Endpoint: POST https://dev.emblemvault.ai/api/tools/execute/unified/getAllPositions
- Price: $0.001200/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dev-emblemvault-ai-701310fa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HyxXb5vQyJJStYBFQ4q3R

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 dev-emblemvault-ai-701310fa -d '<json body>'
```

Example prompt: Show me all my OPEN conditional trade positions across all networks in my Emblem Vault — use my API key to authenticate.

## When to prefer this

Use this endpoint when you need a unified, cross-chain view of all conditional trade positions in a single call rather than querying each network individually. Ideal for dashboards, portfolio monitors, or agents that need to act on open, closed, cancelled, or failed positions across Solana, Ethereum, BSC, Polygon, and Hedera simultaneously.

## Known failure modes

- Missing or invalid apiKey and emblemJwt results in authentication error
- Invalid status enum value returns validation error
- No positions found returns empty list
- Network timeout or backend unavailability returns 5xx error
- Expired or malformed JWT returns unauthorized error

## How this service works

Get all conditional trade positions across major networks in one call, with optional status filters.

## Output

A list of all conditional trade positions across supported networks (Solana, Ethereum, BSC, Polygon, Hedera), each with details such as position status, network, and order parameters. Optionally filtered to only OPEN, CLOSED, CANCELLED, or FAILED positions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "apiKey": {
   "type": "string",
   "description": "Vault API key — provide apiKey or emblemJwt for wallet/vault access"
  },
  "status": {
   "enum": [
    "OPEN",
    "CLOSED",
    "CANCELLED",
    "FAILED"
   ],
   "type": "string",
   "description": "Optional: Filter by position status"
  },
  "emblemJwt": {
   "type": "string",
   "description": "Emblem Vault JWT — provide emblemJwt or apiKey for wallet/vault access"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dev-emblemvault-ai-701310fa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from dev.emblemvault.ai](https://www.zero.xyz/host/dev.emblemvault.ai/llms.txt)
