Read conversation messages
Returns the app’s chat with the AI builder: the messages you sent while building it and the replies the builder produced.
Messages come back oldest first. limit and skip window the conversation from the newest message backwards, so limit=20 returns the 20 most recent messages, and skip=20 with limit=20 returns the 20 before those. Omit limit to return the whole conversation.
An assistant message can have empty content when the whole turn is carried by tool calls, so treat an empty message as work the builder did rather than an error. Messages with hidden set to true are internal and do not appear in the app editor, so skip them to reconstruct the transcript you see there.
Authorizations
Personal API key.
Path Parameters
ID of the app whose conversation to read.
Query Parameters
Maximum number of messages to return, counted back from the newest. Omit to return the whole conversation.
Number of messages to skip, counted back from the newest. Combine with limit to page back through the conversation.