Endpoints

Below is the complete endpoint suite.

Listings API

GET /listings

Retrieve all active startup listings.

Parameters:

  • sector (optional)

  • stage (optional)

  • country (optional)

Response Example

[
  {
    "id": "stp_001",
    "name": "NovaPay",
    "sector": "Fintech",
    "valuation": 3500000,
    "tokenPrice": 1.20,
    "raiseTarget": 450000,
    "raiseProgress": 72000,
    "status": "active"
  }
]

GET /listings/{id}

Retrieve a specific listing.

Response Example


Investor Portfolio API

GET /investor/portfolio

Returns an investor’s token holdings.


GET /investor/transactions

Retrieve investor trade, purchase, and transfer history.


GET /investor/valuation-history

Retrieve valuation changes across all holdings.


Token Metadata API

GET /tokens/{tokenId}

Retrieve metadata about a tokenised equity instrument.


GET /tokens/{tokenId}/price-history

Retrieve price data for liquidity windows.


GET /tokens/{tokenId}/compartment

Return the legal structure information (read-only).


Trading & Liquidity API

GET /liquidity/windows

List all liquidity windows.


POST /trade

Submit a buy/sell order.


GET /trade/status/{tradeId}

Track status of a trade.


Compliance API

POST /compliance/kyc

Submit investor documents for verification.


GET /compliance/status

Retrieve compliance or accreditation status.

Last updated