Skip to main content
GET
Get Resolved Package
The resolved package endpoint returns the complete package with all compiled components, assets, and resolved dependencies in a format ready for runtime execution. This is the format used by client SDKs to render content.

Path Parameters

string
required
Organization ID
string
required
Project ID
string
required
Package version (e.g., 1.0.0)

Query Parameters

boolean
default:"false"
Set to true to include resolved dependencies in the response

Response

string
Package ID
string
Package version
object
Map of component names to compiled JavaScript code
object
Map of component names to their asset arrays
object
Map of dependency identifiers to their resolved content (only present if includeDependencies=true)

Example Response

Dependency Resolution

Dependencies are recursively resolved and flattened into the dependencies object. Each dependency is keyed by {projectId}@{version}. All transitive dependencies are included in the response, deduplicated by version.

Use Cases

Mobile SDK Integration

The resolved format is optimized for client SDKs:

Web Rendering

Code Examples