Python SDK
import httpx
resp = httpx.get(
"https://api.decimal.ai/api/v1/manifests/mfst_abc123",
headers={"Authorization": "Bearer dai_sk_..."},
)
resp.raise_for_status()
manifest = resp.json()curl --request GET \
--url https://api.decimal.ai/api/v1/manifests/{manifest_id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.decimal.ai/api/v1/manifests/{manifest_id}', 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.decimal.ai/api/v1/manifests/{manifest_id}",
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.decimal.ai/api/v1/manifests/{manifest_id}"
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.decimal.ai/api/v1/manifests/{manifest_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.decimal.ai/api/v1/manifests/{manifest_id}")
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{
"id": "mfst_abc123",
"project_id": "proj_main",
"version_label": "v2.1",
"manifest_hash": "a1b2c3d4e5f60718",
"parent_manifest_id": "mfst_000",
"status": "active",
"detection_source": "sdk",
"agent_name": "travel-planner",
"agent_models_json": {
"primary": "gpt-4o"
},
"graph_topology_hash": "topo_001",
"component_summary_json": {
"tools": 4,
"prompts": 2
},
"created_at": "2026-05-10T12:00:00Z",
"components": [
{
"id": "comp_001",
"component_type": "tool",
"component_name": "search_flights",
"component_version": "v1",
"content_hash": "tool_hash_abc",
"schema_json": {
"parameters": {
"type": "object"
}
}
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}manifests
Get a manifest
Get a manifest by ID with full component list.
GET
/
api
/
v1
/
manifests
/
{manifest_id}
Python SDK
import httpx
resp = httpx.get(
"https://api.decimal.ai/api/v1/manifests/mfst_abc123",
headers={"Authorization": "Bearer dai_sk_..."},
)
resp.raise_for_status()
manifest = resp.json()curl --request GET \
--url https://api.decimal.ai/api/v1/manifests/{manifest_id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.decimal.ai/api/v1/manifests/{manifest_id}', 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.decimal.ai/api/v1/manifests/{manifest_id}",
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.decimal.ai/api/v1/manifests/{manifest_id}"
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.decimal.ai/api/v1/manifests/{manifest_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.decimal.ai/api/v1/manifests/{manifest_id}")
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{
"id": "mfst_abc123",
"project_id": "proj_main",
"version_label": "v2.1",
"manifest_hash": "a1b2c3d4e5f60718",
"parent_manifest_id": "mfst_000",
"status": "active",
"detection_source": "sdk",
"agent_name": "travel-planner",
"agent_models_json": {
"primary": "gpt-4o"
},
"graph_topology_hash": "topo_001",
"component_summary_json": {
"tools": 4,
"prompts": 2
},
"created_at": "2026-05-10T12:00:00Z",
"components": [
{
"id": "comp_001",
"component_type": "tool",
"component_name": "search_flights",
"component_version": "v1",
"content_hash": "tool_hash_abc",
"schema_json": {
"parameters": {
"type": "object"
}
}
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}⌘I