---
title: "List marketplace trades"
method: GET
path: "/v1/trades"
tags: ["Trades"]
---

# List marketplace trades

`GET /v1/trades`

Retrieves a list of trades in the marketplace.
Trades represent peer-to-peer exchanges between users, including offers and accepted deals.

Results are ordered by creation date (most recent first).

**Note:** This endpoint currently returns all trades without pagination support.

## Response `200`

List of trades

- object[]
  - `id` string, required — Trade ID
  - `buyer` string, required — Buyer address
  - `seller` string, required — Seller address
  - `item` object
    - `id` string, required — Item ID
    - `name` string, required — Item name
    - `description` string — Item description
    - `image` string — Item image URL
    - `category` string, required — Item category
    - `rarity` string — Item rarity
    - `price` number — Item price
    - `owner` string — Item owner
  - `price` number, required — Trade price
  - `status` 'pending' | 'completed' | 'cancelled', required — Trade status
  - `createdAt` string, date-time — Trade creation timestamp

---

[API](https://skmtc.net/decentraland/apis/realm-provider-api.md) · [All operations](https://skmtc.net/decentraland/apis/realm-provider-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/decentraland/realm-provider-api/revisions/d94e0e0f1821/schema)
