Skip to main content
GET
/
v1
/
assets
List Investable Share Classes
curl --request GET \
  --url https://sandbox.api.rime.finance/v1/assets \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "isin": "NL1111111111",
      "currency": "EUR",
      "subscribeable": true,
      "redeemable": true,
      "tradeable": false,
      "share_class_id": "660e8400-e29b-41d4-a716-446655440001",
      "custom_offerings": [],
      "created": "2024-01-15T10:30:00Z"
    },
    {
      "id": "770e8400-e29b-41d4-a716-446655440002",
      "isin": "NL2222222222",
      "currency": "EUR",
      "subscribeable": false,
      "redeemable": true,
      "tradeable": true,
      "share_class_id": "880e8400-e29b-41d4-a716-446655440003",
      "custom_offerings": [],
      "created": "2024-01-10T14:15:00Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer access token. Provide as a Authorization: Bearer <token> header.

Query Parameters

isin
string | null

Filter by ISIN (International Securities Identification Number).

currency
string | null

Filter by currency code (e.g., EUR, USD).

subscribeable
boolean | null

Filter by subscribeable status. Subscribeable assets can be purchased.

redeemable
boolean | null

Filter by redeemable status. Redeemable assets can be sold back.

tradeable
boolean | null

Filter by tradeable status. Tradeable assets can be traded on secondary markets.

share_class_id
string<uuid> | null

Filter by share class ID.

skip
integer
default:0
Required range: x >= 0
limit
integer
default:100
Required range: 1 <= x <= 1000

Response

200 - application/json

Investable share classes retrieved successfully

data
InvestableShareClassSchema · object[]
required