---
title: "Get All Assets"
method: GET
path: "/assets"
tags: ["Organization"]
---

# Get All Assets

`GET /assets`

Fetches the list of available assets to populate the dropdown box in the New Disbursement flow. Note: the organization must hold a balance in a particular asset to use it in a disbursement.

## Query parameters

- `enabled` boolean

## Headers

- `X-Wallet-Id` string

## Response `200`

A list of assets. When the `enabled` filter is used, each entry also carries `enabled` and `balance`.

- union[]
  - union
    - Asset — The Stellar asset object
      - `id` string
      - `code` string — Asset code
      - `issuer` string — Asset issuer address
      - `created_at` string, date-time
      - `updated_at` string, date-time
      - `deleted_at` string, date-time
    - AssetWithEnabledInfo — An asset as reported for one distribution account, returned when the `enabled` filter is used.
      - `id` string
      - `code` string — Asset code
      - `issuer` string — Asset issuer address
      - `created_at` string, date-time
      - `updated_at` string, date-time
      - `deleted_at` string, date-time
      - `enabled` boolean — Whether the selected account is set up to send this asset
      - `balance` string — What the account currently holds of this asset. Omitted when the balance could not be read.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — The distribution account named by X-Wallet-Id is not visible to the caller

## Changes

- **2026-08-31** `7588d8d2a3c7` — 2 breaking, 6 warning, 3 info
  - added `#/components/schemas/Asset, #/components/schemas/AssetWithEnabledInfo` to the `items/` response property `oneOf` list for the response status `200`
  - the `items/` response's property type changed from `object` to no type for status `200`
  - removed the optional property `items/code` from the response with the `200` status
  - removed the optional property `items/created_at` from the response with the `200` status
  - …7 more

[Change history](https://skmtc.dev/stellar/apis/stellar-disbursement-platform-api/changes/assets/get.md)

---

[API](https://skmtc.dev/stellar/apis/stellar-disbursement-platform-api.md) · [All operations](https://skmtc.dev/stellar/apis/stellar-disbursement-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/stellar/stellar-disbursement-platform-api/revisions/7588d8d2a3c7/schema)
