Standard Methods
The base URL for Aktionariat’s external API is:
https://ext.aktionariat.comGet All Tokens
Section titled “Get All Tokens”Returns a list of all tokenized companies on the Aktionariat platform.
GET /tokens/Parameters: None
Response: An array of token objects, each containing:
| Field | Type | Description |
|---|---|---|
ticker | string | Token ticker symbol (e.g. AKT) |
name | string | Full token name |
description | string | Token description |
chain | string | Blockchain network (mainnet, optimism) |
register | string | Smart contract address of the share register |
market | string | URL of the token’s investor page |
creation | number | Unix timestamp of token creation |
currency | string | Base currency (e.g. CHF) |
status | string | Trading status (TRADED, NOT_TRADED) |
tokenType | string | Type of token (e.g. EQUITY) |
url | string | Investor page URL |
totalSupply | number | Total number of shares |
marketCap | number | Current market capitalization in the base currency |
issuer | object | Issuer details (name, description, URL, industry, founding year) |
icon | string | URL to the token icon image |
Example:
curl https://ext.aktionariat.com/tokens/Get Token Details
Section titled “Get Token Details”Returns details for a specific token identified by its ticker symbol and chain.
GET /tokensParameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
ticker | string | Yes | Token ticker symbol (e.g. AKT) |
chain | string | Yes | Blockchain network (mainnet or optimism) |
Example:
curl "https://ext.aktionariat.com/tokens?ticker=AKT&chain=mainnet"Get Current Price
Section titled “Get Current Price”Returns the current price of a token.
GET /priceParameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
ticker | string | Yes | Token ticker symbol (e.g. AKT) |
chain | string | Yes | Blockchain network (mainnet or optimism) |
Example:
curl "https://ext.aktionariat.com/price?ticker=AKT&chain=mainnet"Get Price History
Section titled “Get Price History”Returns historical price data for a token.
GET /pricesParameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
ticker | string | Yes | Token ticker symbol (e.g. AKT) |
chain | string | Yes | Blockchain network (mainnet or optimism) |
Example:
curl "https://ext.aktionariat.com/prices?ticker=AKT&chain=mainnet"