Python
import os
from datetime import date
from artemis import Artemis
client = Artemis()
response = client.equity.fetch_price(
api_key=os.environ["ARTEMIS_API_KEY"],
symbols="eq-nvda,eq-meta",
start_date=date(2026, 1, 1),
end_date=date(2026, 2, 1),
)
# response.data.symbols is keyed by symbol -> {metric: [{date, val}, ...]}
for symbol, metrics in response.data.symbols.items():
latest = metrics["PRICE"][-1]
print(f"{symbol}: ${latest.val:.2f} on {latest.date}")curl --request GET \
--url https://data-svc.artemisxyz.com/data/api/PRICE/const options = {method: 'GET'};
fetch('https://data-svc.artemisxyz.com/data/api/PRICE/', 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://data-svc.artemisxyz.com/data/api/PRICE/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://data-svc.artemisxyz.com/data/api/PRICE/"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://data-svc.artemisxyz.com/data/api/PRICE/")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-svc.artemisxyz.com/data/api/PRICE/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"symbols": {
"eq-nvda": {
"PRICE": [
{
"date": "2026-01-01",
"val": 186.5
},
{
"date": "2026-01-02",
"val": 188.85
}
]
}
}
}
}Equities
Fetch Equity Price
Daily closing price for one or more equity symbols.
GET
/
data
/
api
/
PRICE
/
Python
import os
from datetime import date
from artemis import Artemis
client = Artemis()
response = client.equity.fetch_price(
api_key=os.environ["ARTEMIS_API_KEY"],
symbols="eq-nvda,eq-meta",
start_date=date(2026, 1, 1),
end_date=date(2026, 2, 1),
)
# response.data.symbols is keyed by symbol -> {metric: [{date, val}, ...]}
for symbol, metrics in response.data.symbols.items():
latest = metrics["PRICE"][-1]
print(f"{symbol}: ${latest.val:.2f} on {latest.date}")curl --request GET \
--url https://data-svc.artemisxyz.com/data/api/PRICE/const options = {method: 'GET'};
fetch('https://data-svc.artemisxyz.com/data/api/PRICE/', 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://data-svc.artemisxyz.com/data/api/PRICE/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://data-svc.artemisxyz.com/data/api/PRICE/"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://data-svc.artemisxyz.com/data/api/PRICE/")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-svc.artemisxyz.com/data/api/PRICE/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"symbols": {
"eq-nvda": {
"PRICE": [
{
"date": "2026-01-01",
"val": 186.5
},
{
"date": "2026-01-02",
"val": 188.85
}
]
}
}
}
}Query Parameters
Comma-separated list of equity symbols (e.g. eq-nvda,eq-meta).
Start date in YYYY-MM-DD format
End date in YYYY-MM-DD format
Time-bucket granularity for returned series.
Available options:
DAY, WEEK, MONTH, QUARTER, YEAR Maximum number of data points to return (1–1000).
Required range:
1 <= x <= 1000Your Artemis API key
Response
200 - application/json
Equity price time-series
Show child attributes
Show child attributes
⌘I

