Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Python
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()
{ "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": {} } ] }
Get a manifest by ID with full component list.
Enter your API key (e.g. dai_sk_test_key_001)
Successful Response