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 the product ID.

To be able to sell a product to your investors, you need a valid agreement with the issuer agreeing on the listing of the product on your distribution platform. 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 listed on your distribution platform.

Example:

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

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

Last updated

Was this helpful?