Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request POST \
--url https://api.agentmark.co/v1/spans/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-Agentmark-App-Id: <api-key>' \
--data '
{
"end_date": "2023-11-07T05:31:56Z",
"filters": [
{
"field": "<string>",
"value": "<string>"
}
],
"limit": 50,
"offset": 0,
"start_date": "2023-11-07T05:31:56Z"
}
'import requests
url = "https://api.agentmark.co/v1/spans/search"
payload = {
"end_date": "2023-11-07T05:31:56Z",
"filters": [
{
"field": "<string>",
"value": "<string>"
}
],
"limit": 50,
"offset": 0,
"start_date": "2023-11-07T05:31:56Z"
}
headers = {
"X-Agentmark-App-Id": "<api-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Agentmark-App-Id': '<api-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
end_date: '2023-11-07T05:31:56Z',
filters: [{field: '<string>', value: '<string>'}],
limit: 50,
offset: 0,
start_date: '2023-11-07T05:31:56Z'
})
};
fetch('https://api.agentmark.co/v1/spans/search', 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.agentmark.co/v1/spans/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'end_date' => '2023-11-07T05:31:56Z',
'filters' => [
[
'field' => '<string>',
'value' => '<string>'
]
],
'limit' => 50,
'offset' => 0,
'start_date' => '2023-11-07T05:31:56Z'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"X-Agentmark-App-Id: <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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.agentmark.co/v1/spans/search"
payload := strings.NewReader("{\n \"end_date\": \"2023-11-07T05:31:56Z\",\n \"filters\": [\n {\n \"field\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"limit\": 50,\n \"offset\": 0,\n \"start_date\": \"2023-11-07T05:31:56Z\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Agentmark-App-Id", "<api-key>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.agentmark.co/v1/spans/search")
.header("X-Agentmark-App-Id", "<api-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"end_date\": \"2023-11-07T05:31:56Z\",\n \"filters\": [\n {\n \"field\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"limit\": 50,\n \"offset\": 0,\n \"start_date\": \"2023-11-07T05:31:56Z\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.agentmark.co/v1/spans/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Agentmark-App-Id"] = '<api-key>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"end_date\": \"2023-11-07T05:31:56Z\",\n \"filters\": [\n {\n \"field\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"limit\": 50,\n \"offset\": 0,\n \"start_date\": \"2023-11-07T05:31:56Z\"\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"cost": 123,
"duration_ms": 123,
"id": "<string>",
"input_tokens": 1,
"metadata": {},
"model": "<string>",
"name": "<string>",
"output_tokens": 1,
"parent_id": "<string>",
"prompt_name": "<string>",
"service_name": "<string>",
"span_kind": "<string>",
"status_message": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"tokens": 1,
"trace_id": "<string>",
"type": "<string>"
}
],
"pagination": {
"limit": 1,
"offset": 1,
"total": 1
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}Search spans with structured JSON filters — the programmatic form of the filter string DSL on GET /v1/spans. filters is an AND-list of predicates ({field, operator, value}) and one-level OR-groups ({or: [...]}). Adds membership operators in, notIn, and between. Valid fields and operators are machine-readable at GET /v1/filter-schema. Defaults to the last 7 days when start_date is unset; the maximum search window is 90 days.
curl --request POST \
--url https://api.agentmark.co/v1/spans/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-Agentmark-App-Id: <api-key>' \
--data '
{
"end_date": "2023-11-07T05:31:56Z",
"filters": [
{
"field": "<string>",
"value": "<string>"
}
],
"limit": 50,
"offset": 0,
"start_date": "2023-11-07T05:31:56Z"
}
'import requests
url = "https://api.agentmark.co/v1/spans/search"
payload = {
"end_date": "2023-11-07T05:31:56Z",
"filters": [
{
"field": "<string>",
"value": "<string>"
}
],
"limit": 50,
"offset": 0,
"start_date": "2023-11-07T05:31:56Z"
}
headers = {
"X-Agentmark-App-Id": "<api-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Agentmark-App-Id': '<api-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
end_date: '2023-11-07T05:31:56Z',
filters: [{field: '<string>', value: '<string>'}],
limit: 50,
offset: 0,
start_date: '2023-11-07T05:31:56Z'
})
};
fetch('https://api.agentmark.co/v1/spans/search', 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.agentmark.co/v1/spans/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'end_date' => '2023-11-07T05:31:56Z',
'filters' => [
[
'field' => '<string>',
'value' => '<string>'
]
],
'limit' => 50,
'offset' => 0,
'start_date' => '2023-11-07T05:31:56Z'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"X-Agentmark-App-Id: <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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.agentmark.co/v1/spans/search"
payload := strings.NewReader("{\n \"end_date\": \"2023-11-07T05:31:56Z\",\n \"filters\": [\n {\n \"field\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"limit\": 50,\n \"offset\": 0,\n \"start_date\": \"2023-11-07T05:31:56Z\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Agentmark-App-Id", "<api-key>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.agentmark.co/v1/spans/search")
.header("X-Agentmark-App-Id", "<api-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"end_date\": \"2023-11-07T05:31:56Z\",\n \"filters\": [\n {\n \"field\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"limit\": 50,\n \"offset\": 0,\n \"start_date\": \"2023-11-07T05:31:56Z\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.agentmark.co/v1/spans/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Agentmark-App-Id"] = '<api-key>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"end_date\": \"2023-11-07T05:31:56Z\",\n \"filters\": [\n {\n \"field\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"limit\": 50,\n \"offset\": 0,\n \"start_date\": \"2023-11-07T05:31:56Z\"\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"cost": 123,
"duration_ms": 123,
"id": "<string>",
"input_tokens": 1,
"metadata": {},
"model": "<string>",
"name": "<string>",
"output_tokens": 1,
"parent_id": "<string>",
"prompt_name": "<string>",
"service_name": "<string>",
"span_kind": "<string>",
"status_message": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"tokens": 1,
"trace_id": "<string>",
"type": "<string>"
}
],
"pagination": {
"limit": 1,
"offset": 1,
"total": 1
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}Application ID for tenant scoping. X-Outerlayer-App-Id is accepted as an equivalent header.
API key (sk_agentmark_*)
Was this page helpful?