Add Nado documentation and examples, including new API endpoints, FAQs, and guides for using the TypeScript SDK. Update .env.example with additional configuration options.

This commit is contained in:
discountry
2025-12-19 01:38:09 +08:00
parent 624fecfa70
commit c69ea72860
148 changed files with 17031 additions and 27 deletions
@@ -0,0 +1,80 @@
# Symbols
## Request
{% tabs %}
{% tab title="REST" %} <mark style="color:green;">**GET**</mark> `[GATEWAY_REST_ENDPOINT]/symbols`
{% endtab %}
{% endtabs %}
## Response
```json
[
{
"product_id": 0,
"symbol": "USDT0",
"delisted": false
},
{
"product_id": 1,
"symbol": "KBTC",
"delisted": false
},
{
"product_id": 2,
"symbol": "BTC-PERP",
"delisted": false
},
{
"product_id": 3,
"symbol": "WETH",
"delisted": false
},
{
"product_id": 4,
"symbol": "ETH-PERP",
"delisted": false
},
{
"product_id": 5,
"symbol": "USDC",
"delisted": false
},
{
"product_id": 8,
"symbol": "SOL-PERP",
"delisted": false
},
{
"product_id": 10,
"symbol": "XRP-PERP",
"delisted": false
},
{
"product_id": 14,
"symbol": "BNB-PERP",
"delisted": false
},
{
"product_id": 16,
"symbol": "HYPE-PERP",
"delisted": false
},
{
"product_id": 18,
"symbol": "ZEC-PERP",
"delisted": false
},
{
"product_id": 20,
"symbol": "MON-PERP",
"delisted": false
},
{
"product_id": 22,
"symbol": "FARTCOIN-PERP",
"delisted": false
}
]
```