Hero Light Hero Dark

Welcome

Welcome to the Brickken Platform your gateway to tokenizing real-world assets in a secure, compliant, and efficient way. This documentation is designed to help you navigate through the platform’s capabilities, understand the core concepts, and start building with our APIs and smart contracts. Whether you’re a developer integrating tokenization workflows, a business issuing digital assets, or a partner building on top of Brickken’s infrastructure, this guide will walk you through the essential steps to get started.

Brickken Sandbox enviroment

create an account on brickken sandbox.

Request your api key

Send us an email to tech@brickken.com with your user (email) to get your api key

Start your tokenization journey

you are ready to start using our api in sandbox enviroment

Are you ready to go to Prod?

Schedule a call with us

Authentication

All API endpoints are authenticated using an API Key sent in the request header. This is defined in the OpenAPI specification under securitySchemes. You must include your unique API key in the x-api-key header of each request.
"components": {
  "securitySchemes": {
    "apiKeyAuth": {
      "type": "apiKey",
      "in": "header",
      "name": "x-api-key"
    }
  }
}