QWIK api returns 500 status

Please fill out as many of the following questions as possible so we can help you promptly! If you don’t know how to answer or it does not apply, feel free to remove it or leave it blank.

Builder content link
Builder.io: Visual Development Platform

Builder public api key
a73e01a1c6a34697ab20d49c30aab093

Detailed steps to reproduce the bug

Response

{
    "status": 500,
    "message": "Error: The <Type> of the JSX element must be either a string or a function. Instead, it's a \"undefined\": undefined."
}

Code stack you are integrating Builder with
JS, REST API

Reproducible code example

curl --location 'https://cdn.builder.io/api/v1/qwik/marketing-fe-alpha?apiKey=a73e01a1c6a34697ab20d49c30aab093&userAttributes.urlPath=%2F&includeUnpublished=true'
<script async src="https://cdn.builder.io/js/qwik/qwikloader.js"></script>
<script>
    (async () => {
        const qwikUrl = new URL('https://cdn.builder.io/api/v1/qwik/marketing-fe-alpha');
        qwikUrl.searchParams.set('apiKey', 'a73e01a1c6a34697ab20d49c30aab093');
        qwikUrl.searchParams.set('userAttributes.urlPath', '/');
        qwikUrl.searchParams.set('includeUnpublished', true);

        const response = await fetch(qwikUrl);
        const { html } = await response.json();
        document.querySelector('#marketing-area').innerHTML = html;
    })();
</script>

Hey @chaewon It appears that your live page is currently inaccessible, which might be contributing to the error with the QWIK API. I’ve attached a screenshot for your reference.

I’ve tested this on my space and found that the QWIK API is functioning as expected.
https://cdn.builder.io/api/v1/qwik/vercel?apiKey=81994bd6a6634c5e899ff6a840c845a1&url=%2F&includeUnpublished=true

Sorry @sheema, I attached the test environment live page. I’ll share the live page you can access.
Builder content link
Builder.io: Visual Development Platform
https://cdn.builder.io/api/v1/qwik/marketing-fe?apiKey=a73e01a1c6a34697ab20d49c30aab093&userAttributes.urlPath=%2F&includeUnpublished=true

Hey @chaewon I created a test page in your space with the url path as /builder-test. I am able to get the results from the QWIK API https://cdn.builder.io/api/v1/qwik/marketing-fe?apiKey=a73e01a1c6a34697ab20d49c30aab093&userAttributes.urlPath=/builder-test&includeUnpublished=true. I suspect in your case the issue is with the value of the url-path.