Get asset
curl --request GET \
--url https://api.daya.co/stocks/v1/assets/{symbol} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.daya.co/stocks/v1/assets/{symbol}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.daya.co/stocks/v1/assets/{symbol}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.daya.co/stocks/v1/assets/{symbol}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.daya.co/stocks/v1/assets/{symbol}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.daya.co/stocks/v1/assets/{symbol}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.daya.co/stocks/v1/assets/{symbol}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"about_text": "Apple Inc. designs, manufactures, and markets smartphones, personal computers, tablets, wearables, and accessories worldwide.",
"category": "stock",
"change_24h_pct": "1.25",
"change_24h_usd": "2.34",
"customer_risk_level": "low",
"dividend_policy": "Dividends are reflected in the token price.",
"economic_exposure_only": true,
"is_market_open": true,
"is_new": false,
"is_off_hours_eligible": true,
"is_off_hours_open": false,
"issuer_entity": "Backed Finance AG",
"legal_form": "tokenized security",
"logo_url": "https://cdn.daya.co/logos/aapl.png",
"market_status": "open",
"max_order_usd": "50000.00",
"min_order_usd": "1.00",
"name": "Apple Inc.",
"next_close_at": "2026-01-15T21:00:00Z",
"next_open_at": "2026-01-16T14:30:00Z",
"ownership_rights": "none",
"price_precision": 2,
"price_usd": "189.50",
"shareholder_rights_disclosure": "Holders do not receive shareholder rights in the underlying company.",
"status": "enabled",
"subtitle": "Technology",
"symbol": "AAPL",
"underlying_exchange": "NASDAQ",
"underlying_reference_url": "https://www.nasdaq.com/market-activity/stocks/aapl",
"underlying_ticker": "AAPL",
"voting_rights": "none"
},
"error": {
"code": "<string>",
"details": "<unknown>",
"fields": {},
"message": "<string>"
},
"message": "<string>",
"success": true,
"timestamp": "<string>"
}{
"data": "<unknown>",
"error": {
"code": "<string>",
"details": "<unknown>",
"fields": {},
"message": "<string>"
},
"message": "<string>",
"success": true,
"timestamp": "<string>"
}{
"data": "<unknown>",
"error": {
"code": "<string>",
"details": "<unknown>",
"fields": {},
"message": "<string>"
},
"message": "<string>",
"success": true,
"timestamp": "<string>"
}{
"data": "<unknown>",
"error": {
"code": "<string>",
"details": "<unknown>",
"fields": {},
"message": "<string>"
},
"message": "<string>",
"success": true,
"timestamp": "<string>"
}Market Data
Get asset
GET
/
assets
/
{symbol}
Get asset
curl --request GET \
--url https://api.daya.co/stocks/v1/assets/{symbol} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.daya.co/stocks/v1/assets/{symbol}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.daya.co/stocks/v1/assets/{symbol}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.daya.co/stocks/v1/assets/{symbol}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.daya.co/stocks/v1/assets/{symbol}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.daya.co/stocks/v1/assets/{symbol}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.daya.co/stocks/v1/assets/{symbol}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"about_text": "Apple Inc. designs, manufactures, and markets smartphones, personal computers, tablets, wearables, and accessories worldwide.",
"category": "stock",
"change_24h_pct": "1.25",
"change_24h_usd": "2.34",
"customer_risk_level": "low",
"dividend_policy": "Dividends are reflected in the token price.",
"economic_exposure_only": true,
"is_market_open": true,
"is_new": false,
"is_off_hours_eligible": true,
"is_off_hours_open": false,
"issuer_entity": "Backed Finance AG",
"legal_form": "tokenized security",
"logo_url": "https://cdn.daya.co/logos/aapl.png",
"market_status": "open",
"max_order_usd": "50000.00",
"min_order_usd": "1.00",
"name": "Apple Inc.",
"next_close_at": "2026-01-15T21:00:00Z",
"next_open_at": "2026-01-16T14:30:00Z",
"ownership_rights": "none",
"price_precision": 2,
"price_usd": "189.50",
"shareholder_rights_disclosure": "Holders do not receive shareholder rights in the underlying company.",
"status": "enabled",
"subtitle": "Technology",
"symbol": "AAPL",
"underlying_exchange": "NASDAQ",
"underlying_reference_url": "https://www.nasdaq.com/market-activity/stocks/aapl",
"underlying_ticker": "AAPL",
"voting_rights": "none"
},
"error": {
"code": "<string>",
"details": "<unknown>",
"fields": {},
"message": "<string>"
},
"message": "<string>",
"success": true,
"timestamp": "<string>"
}{
"data": "<unknown>",
"error": {
"code": "<string>",
"details": "<unknown>",
"fields": {},
"message": "<string>"
},
"message": "<string>",
"success": true,
"timestamp": "<string>"
}{
"data": "<unknown>",
"error": {
"code": "<string>",
"details": "<unknown>",
"fields": {},
"message": "<string>"
},
"message": "<string>",
"success": true,
"timestamp": "<string>"
}{
"data": "<unknown>",
"error": {
"code": "<string>",
"details": "<unknown>",
"fields": {},
"message": "<string>"
},
"message": "<string>",
"success": true,
"timestamp": "<string>"
}Authorizations
Your Daya API key, sent in the X-API-Key header. Issue and scope keys in the Daya dashboard.
Path Parameters
Display symbol (e.g. AAPL)
⌘I