For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Copy to LLMGithubGo to App
DocumentationIntegrationsBuilding Self-Improving AgentsSelf-hosting OpikSDK & API reference
DocumentationIntegrationsBuilding Self-Improving AgentsSelf-hosting OpikSDK & API reference
    • Overview
  • Python SDK
    • Reference
    • REST API Client
  • Typescript SDK
    • Overview
    • Opik TS
    • Prompts
    • Opik Query Language (OQL)
  • Rest API
    • Overview
        • POSTCreate optimizer config with initial blueprint
        • PATCHAdd blueprint to existing config
        • POSTCreate blueprint from mask
        • POSTCreate or update environments
        • GETRetrieve blueprint by environment
        • PUTSet environment by blueprint name
        • DELDelete environment
        • GETRetrieve blueprint by ID
        • GETRetrieve blueprint by name
        • GETGet blueprint history
        • GETRetrieve delta by blueprint ID
        • GETRetrieve latest blueprint
        • POSTRemove configuration parameters
LogoLogo
Copy to LLMGithubGo to App
Rest APIAPI ReferenceAgent Configs

Get blueprint history

GET
/v1/private/agent-configs/blueprints/history/projects/:project_id
GET
/api/v1/private/agent-configs/blueprints/history/projects/:project_id
$curl http://localhost:5173/api/v1/private/agent-configs/blueprints/history/projects/project_id
1{
2 "page": 1,
3 "size": 1,
4 "total": 1,
5 "content": [
6 {
7 "type": "blueprint",
8 "values": [
9 {
10 "key": "string",
11 "type": "string",
12 "value": "string",
13 "description": "string"
14 }
15 ],
16 "id": "string",
17 "name": "string",
18 "description": "string",
19 "envs": [
20 "string"
21 ],
22 "created_by": "string",
23 "created_at": "2024-01-15T09:30:00Z",
24 "last_updated_by": "string",
25 "last_updated_at": "2024-01-15T09:30:00Z"
26 }
27 ]
28}
Retrieves paginated blueprint history for a project
Was this page helpful?
Previous

Retrieve delta by blueprint ID

Next
Built with

Path parameters

project_idstringRequiredformat: "uuid"

Query parameters

pageintegerOptional>=1Defaults to 1
sizeintegerOptional>=1Defaults to 10

Response

History retrieved
pageinteger
sizeinteger
totallong
contentlist of objects

Errors

401
Unauthorized Error
404
Not Found Error