Skip to main content
GET
Get Resolved Content
Retrieves everything needed to render a content item, including its compiled code, assets, and all resolved package dependencies. This is the format used by client SDKs to render content.

Path Parameters

organizationId
string
required
Organization ID
projectId
string
required
Project ID
id
string
required
Content ID

Response

content
string
The compiled BindJS code for this content, ready for execution
package
object
The main package containing the components used by this content
dependencies
object
Map of dependency identifiers to their resolved content

Example Response

Use Cases

Mobile SDK Integration

The resolved format is optimized for client SDKs:

Web Rendering

When accessed with API keys, returns the latest published version. For optimization scenarios where packages are cached locally, use the standard /content/{id} endpoint to fetch just the content with the compiled field.

Error Responses

Content Not Found

Not Published

When accessed via API key, only published content is returned:

Code Examples