Skip to main content
Opik Documentation

Search documentation

Type to search this documentation.

Get blueprint history

GET/v1/private/agent-configs/blueprints/history/projects/{project_id}Get blueprint history

Retrieves paginated blueprint history for a project

Parameters

project_idstring · uuidpathrequired
pageinteger · int32query

default 1 · minimum 1

sizeinteger · int32query

default 10 · minimum 1

Responses

200History retrievedapplication/json
objectBlueprintPage_History
contentarray of object
Show child attributes
Show array items
created_atstring · date-time
created_bystring
descriptionstring

maxLength 255 · minLength 0

envsarray of string
Show child attributes
idstring · uuid
last_updated_atstring · date-time
last_updated_bystring
namestring
typestringrequired

one of "blueprint", "mask"

valuesarray of objectrequired

maxItems 250 · minItems 1

Show child attributes

maxItems 250 · minItems 1

Show array items
descriptionstring
keystringrequired

maxLength 255 · minLength 0

typestringrequired

one of "string", "integer", "float", "boolean", "prompt", "prompt_commit"

valuestring
pageinteger · int32
sizeinteger · int32
totalinteger · int64
Example response
{
  "content": [
    {
      "created_at": "2026-06-09T00:00:00Z",
      "created_by": "string",
      "description": "string",
      "envs": [
        "string"
      ],
      "id": "00000000-0000-0000-0000-000000000000",
      "last_updated_at": "2026-06-09T00:00:00Z",
      "last_updated_by": "string",
      "name": "string",
      "type": "blueprint",
      "values": [
        {
          "description": "string",
          "key": "string",
          "type": "boolean",
          "value": "string"
        }
      ]
    }
  ],
  "page": 0,
  "size": 0,
  "total": 0
}
401Unauthorizedapplication/json
objectErrorMessage_History
errorsarray of string
Show child attributes
Example response
{
  "errors": [
    "string"
  ]
}
404Not Foundapplication/json
objectErrorMessage_History
errorsarray of string
Show child attributes
Example response
{
  "errors": [
    "string"
  ]
}
Documentation menu