Skip to main content
GET
/
api
/
v1
/
ideations
/
{ideation_id}
/
snapshots
/
{version}
Get Ideation Snapshot
curl --request GET \
  --url https://api.example.com/api/v1/ideations/{ideation_id}/snapshots/{version} \
  --header 'Authorization: Bearer <token>'
{
  "complexity": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "created_by": "<string>",
  "description": "<string>",
  "id": "<string>",
  "ideation_id": "<string>",
  "labels": [
    "<string>"
  ],
  "problem_statement": "<string>",
  "proposed_approach": "<string>",
  "qa_snapshot": [
    {}
  ],
  "scope_assessment": {},
  "title": "<string>",
  "version": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.oktolabs.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

ideation_id
string
required
version
integer
required

Response

Successful Response

Schema for an ideation snapshot — immutable version.

complexity
string | null
required
created_at
string<date-time>
required
created_by
string
required
description
string | null
required
id
string
required
ideation_id
string
required
labels
string[] | null
required
problem_statement
string | null
required
proposed_approach
string | null
required
qa_snapshot
Qa Snapshot · object[] | null
required
scope_assessment
Scope Assessment · object
required
title
string
required
version
integer
required
Last modified on May 8, 2026