List public symbols
curl --request GET \
--url https://api.0xarchive.io/v1/symbolsimport requests
url = "https://api.0xarchive.io/v1/symbols"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.0xarchive.io/v1/symbols', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.0xarchive.io/v1/symbols"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"symbols": [
{
"symbol": "BTC",
"exchange": "hyperliquid",
"data_types": [
"l2_orderbook",
"trades",
"liquidations"
],
"coverage_from": "2023-11-07T05:31:56Z",
"coverage_to": "2023-11-07T05:31:56Z",
"coverage_by_type": {},
"size_per_day": {},
"slug": "<string>",
"outcome_pair": [
"<string>"
],
"display_title": "<string>",
"is_settled": true,
"is_active": true
}
]
}{
"code": 400,
"error": "Failed to deserialize query string: limit: invalid digit found in string",
"error_code": "invalid_query_params",
"request_id": "3f2a9c71-5b0e-4d68-9a4c-7e1d2b6f8a05"
}{
"code": 429,
"error": "Rate limit exceeded"
}List public symbols
0xArchive API reference for List public symbols. Includes authentication, parameters, response shape, examples, and route-safe implementation notes.
GET
https://api.0xarchive.io
/
v1
/
symbols
List public symbols
curl --request GET \
--url https://api.0xarchive.io/v1/symbolsimport requests
url = "https://api.0xarchive.io/v1/symbols"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.0xarchive.io/v1/symbols', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.0xarchive.io/v1/symbols"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"symbols": [
{
"symbol": "BTC",
"exchange": "hyperliquid",
"data_types": [
"l2_orderbook",
"trades",
"liquidations"
],
"coverage_from": "2023-11-07T05:31:56Z",
"coverage_to": "2023-11-07T05:31:56Z",
"coverage_by_type": {},
"size_per_day": {},
"slug": "<string>",
"outcome_pair": [
"<string>"
],
"display_title": "<string>",
"is_settled": true,
"is_active": true
}
]
}{
"code": 400,
"error": "Failed to deserialize query string: limit: invalid digit found in string",
"error_code": "invalid_query_params",
"request_id": "3f2a9c71-5b0e-4d68-9a4c-7e1d2b6f8a05"
}{
"code": 429,
"error": "Rate limit exceeded"
}Response
Public symbol universe
Public symbol universe response.
Hide child attributes
Hide child attributes
Example:
"BTC"
Venue-family key.
Example:
"hyperliquid"
Example:
["l2_orderbook", "trades", "liquidations"]
HIP-4 slug when available.
Required array length:
2 elementsLast modified on July 28, 2026
Was this page helpful?
⌘I