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

string
required
Organization ID
string
required
Project ID
string
required
Content ID

Response

string
The compiled BindJS code for this content, ready for execution
object
The main package containing the components used by this content
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