GET
/
get-api-sto-by-id
/
{id}
Get a specific STO by its UUID
curl --request GET \
  --url https://api.sandbox.brickken.com/get-api-sto-by-id/{id} \
  --header 'x-api-key: <api-key>'
{
  "uuid": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
  "name": "Example Project Alpha STO",
  "status": "ACTIVE",
  "tokenAmount": "1000000",
  "hardCap": "500000",
  "softCap": "100000",
  "maxInvestment": "10000",
  "minInvestment": "100",
  "tokenSymbol": "EXA",
  "startDate": "2025-04-01T10:00:00.000Z",
  "endDate": "2025-07-01T23:59:59.000Z",
  "tokenPrice": "0.50",
  "acceptedCoin": "USDC"
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

The unique identifier (UUID) of the STO.

Response

200 - application/json

Successful response - STO details retrieved

Represents the structure of an STO based on the defined interface.