Products

Each product represents a crypto security with it's own crypto security registry managed by Cashlink as the registrar. Products are referenced in the API using their product ID.

Wallets that you've added to investor accounts on your distribution platform are only able to receive products that are listed on your distribution platform. Such product listings are created and managed by the issuer. You can request a listing from the issuer of the product. The partner management team at Cashlink can assist you with setting up these agreements.

Using the products endpoint you can retrieve information about all products that are listed on your distribution platform as well as details about the individual products.

Example:

r = requests.get(
    f'{URL}/distributor/v2/products/',
    headers={**headers}
)
assert r.status_code < 300, r.content
product_id = r.json()['results'][0]['id']

r = requests.get(
    f'{URL}/distributor/v2/products/{product_id}/',
    headers={**headers}
)
assert r.status_code < 300, r.content
print(r.json()['name'])

Last updated

Was this helpful?