Skip to content

Nyala Customer API (v1)

NYALA's tokenization API allows you to issue tokens on Polygon & Stellar. It allows you to create and manage tokens - including tokenized securities that have an ISIN - and to manage customer data. Interactions such as creating a new customer entity, request a wallet opening, creating a token and distributing a token to a customer are covered in this document. During the onboarding process, an institution entity will be created for you.

Download OpenAPI description
Overview
URL
Nyala Digital Asset AG
Languages
Servers
Production Environment
https://api.nyala.de
UAT / Sandbox Environment
https://uat.api.nyala.de

The first step in the tokenization lifecycle is to create a Customer that will receive the token.

Operations

The second step in the tokenization lifecycle is to request a retail wallet for the Customer newly created. The tokens will be sent to that wallet, and the private key to the wallet will be custodied using our technology.

Operations
Operations
Operations

Request

curl -i -X GET \
  https://api.nyala.de/api/external/v1/status

Responses

OK

Returns the Users identity, if HMAC authentication worked.

Request

curl -i -X GET \
  https://api.nyala.de/api/external/v1/status/auth

Responses

OK

Bodyapplication/json
errorMessageCodesArray of strings or nullread-only
errorsArray of objects or null(Error)read-only
dataobject(AuthenticatedInstitutionDto)
Response
application/json
{ "errorMessageCodes": [ "string" ], "errors": [ {} ], "data": { "institutionName": "string", "productAccess": [], "userName": "string" } }