Skip to main content
GET
/
get-stos
Get all stos by TokenSymbol
curl --request GET \
  --url https://api.sandbox.brickken.com/get-stos \
  --header 'x-api-key: <api-key>'
{
  "status": [
    {
      "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"
    }
  ]
}
Retrieves information about Security Token Offerings (STOs).

Query Parameters

  • tokenSymbol (optional): Filter by specific token symbol

Example

curl --request GET \
  --url 'https://api.sandbox.brickken.com/get-stos' \
  --header 'x-api-key: YOUR_API_KEY'

Response

{
  "stos": [
    {
      "id": "123",
      "tokenSymbol": "EXMPL",
      "status": "active",
      "startDate": "2024-01-01T00:00:00Z",
      "endDate": "2024-12-31T23:59:59Z",
      "softCap": "50000",
      "hardCap": "500000",
      "raised": "25000"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Query Parameters

tokenSymbol
string
required

The token symbol from a specific token.

Response

200 - application/json

Successful response

status
object[]