Assets
List Assets
List assets for the current account
GET
/
v1
/
assets
List Assets
curl --request GET \
--url https://api.oviond.com/v1/assets \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.oviond.com/v1/assets"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.oviond.com/v1/assets', 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.oviond.com/v1/assets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.oviond.com/v1/assets"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.oviond.com/v1/assets")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.oviond.com/v1/assets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": [
{
"id": "<string>",
"account_id": "<string>",
"name": "<string>",
"is_recommended": true,
"description": "<string>",
"type": "<string>",
"tags": [
"<string>"
],
"datasources": [
"<string>"
],
"created_at": "<unknown>",
"widgets": [
{
"id": "widget123",
"account_id": "ov:26AbCd",
"source_id": "<string>",
"page_id": "<string>",
"client_id": "<string>",
"title": "<string>",
"text": "<string>",
"name": "<string>",
"auto_generated_name": "<string>",
"link": "<string>",
"link_url": "<string>",
"embed_url": "<string>",
"embed_iframe": "<string>",
"embed_html": "<string>",
"size": "<string>",
"description": "<string>",
"content": "<string>",
"src": "<string>",
"url": "<string>",
"icon": "<string>",
"target": "<string>",
"image_link_url": "<string>",
"x": 123,
"y": 123,
"width": 123,
"height": 123,
"is_secondary": true,
"options_3d": true,
"kpi": true,
"blended": true,
"sort_order": "<string>",
"sort_by": "<string>",
"column_widths": {},
"b_height": "<string>",
"invert_y_axis": true,
"show_header": true,
"show_name": true,
"show_icon": true,
"show_date": true,
"show_grid_lines": true,
"show_legends": true,
"show_x_axis": true,
"show_y_axis": true,
"show_trendline": true,
"show_totals": true,
"show_search": true,
"show_table_filters": true,
"show_logarithmic": true,
"show_multiple_axes": true,
"show_custom_date_range": true,
"show_description": true,
"show_container": true,
"show_label_list": true,
"show_chart": true,
"expand_rows": true,
"data_view": "<string>",
"metrics": [
{
"value": "<string>",
"label": "<string>",
"data_view": "<string>"
}
],
"dimensions": [
{
"value": "<string>",
"label": "<string>",
"data_view": "<string>"
}
],
"filters": [
{
"id": 123,
"field": "sessionMedium",
"operator": "contains",
"value": "cpc"
}
],
"advanced": {},
"currency": {
"code": "USD",
"symbol": "$",
"iso": "US"
},
"date_range": {
"text": "Last 30 Days",
"compare": "None",
"include_today": false,
"current_start": "2026-03-01",
"current_end": "2026-03-31",
"previous_start": "2026-02-01",
"previous_end": "2026-02-28",
"custom_days": 60,
"custom_months": 3
},
"current_data": [
{}
],
"current_summary": {},
"previous_data": [
{}
],
"previous_summary": {},
"series_fetched_at": "<string>",
"created_at": "<unknown>"
}
]
}
],
"meta": {
"page": 123,
"limit": 123,
"total": 123
}
}Authorizations
ApiKeyAuthBearerAuth
Oviond API key (prefix oviond_) sent as a Bearer token — the credential for REST/programmatic and headless integrations. Manage keys in Settings → API Keys. API keys do NOT authenticate the MCP endpoint (/mcp), which uses OAuth 2.1 + PKCE.
Query Parameters
Required range:
x >= 0Example:
0
Required range:
1 <= x <= 100Example:
20
Example:
"chart"
Filter by datasource IDs (comma-separated or array; each a known datasource id)
Available options:
all, standard, mine Available options:
recommended, created_at, name ⌘I
List Assets
curl --request GET \
--url https://api.oviond.com/v1/assets \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.oviond.com/v1/assets"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.oviond.com/v1/assets', 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.oviond.com/v1/assets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.oviond.com/v1/assets"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.oviond.com/v1/assets")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.oviond.com/v1/assets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": [
{
"id": "<string>",
"account_id": "<string>",
"name": "<string>",
"is_recommended": true,
"description": "<string>",
"type": "<string>",
"tags": [
"<string>"
],
"datasources": [
"<string>"
],
"created_at": "<unknown>",
"widgets": [
{
"id": "widget123",
"account_id": "ov:26AbCd",
"source_id": "<string>",
"page_id": "<string>",
"client_id": "<string>",
"title": "<string>",
"text": "<string>",
"name": "<string>",
"auto_generated_name": "<string>",
"link": "<string>",
"link_url": "<string>",
"embed_url": "<string>",
"embed_iframe": "<string>",
"embed_html": "<string>",
"size": "<string>",
"description": "<string>",
"content": "<string>",
"src": "<string>",
"url": "<string>",
"icon": "<string>",
"target": "<string>",
"image_link_url": "<string>",
"x": 123,
"y": 123,
"width": 123,
"height": 123,
"is_secondary": true,
"options_3d": true,
"kpi": true,
"blended": true,
"sort_order": "<string>",
"sort_by": "<string>",
"column_widths": {},
"b_height": "<string>",
"invert_y_axis": true,
"show_header": true,
"show_name": true,
"show_icon": true,
"show_date": true,
"show_grid_lines": true,
"show_legends": true,
"show_x_axis": true,
"show_y_axis": true,
"show_trendline": true,
"show_totals": true,
"show_search": true,
"show_table_filters": true,
"show_logarithmic": true,
"show_multiple_axes": true,
"show_custom_date_range": true,
"show_description": true,
"show_container": true,
"show_label_list": true,
"show_chart": true,
"expand_rows": true,
"data_view": "<string>",
"metrics": [
{
"value": "<string>",
"label": "<string>",
"data_view": "<string>"
}
],
"dimensions": [
{
"value": "<string>",
"label": "<string>",
"data_view": "<string>"
}
],
"filters": [
{
"id": 123,
"field": "sessionMedium",
"operator": "contains",
"value": "cpc"
}
],
"advanced": {},
"currency": {
"code": "USD",
"symbol": "$",
"iso": "US"
},
"date_range": {
"text": "Last 30 Days",
"compare": "None",
"include_today": false,
"current_start": "2026-03-01",
"current_end": "2026-03-31",
"previous_start": "2026-02-01",
"previous_end": "2026-02-28",
"custom_days": 60,
"custom_months": 3
},
"current_data": [
{}
],
"current_summary": {},
"previous_data": [
{}
],
"previous_summary": {},
"series_fetched_at": "<string>",
"created_at": "<unknown>"
}
]
}
],
"meta": {
"page": 123,
"limit": 123,
"total": 123
}
}