Equity Tokens
Cannonical Equity Token metadata feed.
Equity Tokens are tokenized versions of real-world stocks that exist on blockchain networks.
These will bring your tradiotional finance to the highly dynamic on-chain descentralized finance.
Returns a list of equity tokens that match the provided filter criteria.
If no filter is provided, it returns all equity tokens. Filters can be applied by network_id (blockchain chain ID) or equity_symbol (like 'AAPL').
Returns a list of objects containing token details including:
token_symbol: Token symbol
name: Token name
address: Token contract address
network: Network name where the token is deployed
decimals: Number of decimal places for the token
equity_symbol: Symbol of the equity this token represents
icon: URL to the token icon image
Symbol of the equity to filter tokens by (e.g., 'AAPL')
Chain ID of the network to filter tokens by
POST /api/instruments/equity_tokens_list HTTP/1.1
Host: sailing.global
Content-Type: application/json
Accept: */*
Content-Length: 19
{
"network_id": 8453
}
[
{
"address": "0x21a2A8f0558235E8c57619e9Ac82aA1C83d56Ec4",
"decimals": 18,
"equity_symbol": "TSLA",
"icon": "https://s3-symbol-logo.tradingview.com/tesla.svg",
"name": "Tesla Inc Tokenized by Sailing",
"network": "Optimism",
"network_id": 10,
"onchain_symbol": "TSLAs",
"symbol": "TSLAs/Optimism"
}
]
Returns a dictionary of all the equities supported by the platform.
Each equity entry contains:
equity_symbol: Symbol of the equity (e.g., 'AAPL')
name: Full name of the equity (e.g., 'Apple Inc')
description: Description of the equity
logo_url: URL to the equity logo image
POST /api/instruments/supported_equities_list HTTP/1.1
Host: sailing.global
Accept: */*
Dictionary of supported equities with their details
{
"AAPL": {
"description": "Apple, Inc. engages in the design, manufacture, and sale of smartphones, personal computers, tablets, wearables and accessories, and other varieties of related services. It operates through the following geographical segments: Americas, Europe, Greater China, Japan, and Rest of Asia Pacific. The Americas segment includes North and South America. The Europe segment consists of European countries, as well as India, the Middle East, and Africa. The Greater China segment comprises China, Hong Kong, and Taiwan. The Rest of Asia Pacific segment includes Australia and Asian countries. Its products and services include iPhone, Mac, iPad, AirPods, Apple TV, Apple Watch, Beats products, AppleCare, iCloud, digital content stores, streaming, and licensing services. The company was founded by Steven Paul Jobs, Ronald Gerald Wayne, and Stephen G. Wozniak in April 1976 and is headquartered in Cupertino, CA.",
"equity_symbol": "AAPL",
"logo_url": "https://s3-symbol-logo.tradingview.com/apple.svg",
"name": "Apple Inc"
}
}
Last updated