# List

Launch stage: Public Preview

`GET /api/2.0/marketplace-exchange/exchanges`

List exchanges visible to provider

API scopes: marketplace

## Query parameters

- `page_token` (string, optional)
- `page_size` (int32, optional)

## Returns

Returns a list of Exchange objects.

## Response

```json
{
  "exchanges": [
    {
      "id": "string",
      "name": "string",
      "comment": "string",
      "filters": [
        {}
      ],
      "created_at": 0,
      "created_by": "string",
      "updated_at": 0,
      "updated_by": "string",
      "linked_listings": [
        {}
      ]
    }
  ],
  "next_page_token": "string"
}
```

