fetchContent

Fetch content from a slot.

This method fetches the content of a slot on the server side.

Signature

This function has the following signature:

fetchContent<T extends SlotId>(id: T, options: FetchOptions): Promise<FetchResponse<T>>

Example

Here is a minimal example of how to use this function:

components/HomeHero.jsx
12345678910111213
import {fetchContent} from '@croct/plug-next/server';
export async function HomeHero() {
const {content} = await fetchContent('home-hero');
return (
<div>
<strong>{content.title}</strong>
<p>{content.subtitle}</p>
<a href={content.button.link}>{content.button.label}</a>
</div>
);
}

For more examples, see the Content rendering.

Parameters

The following list describes the supported parameters:

id
string

The ID of the slot to fetch.

You can specify the version of the slot by passing a versioned ID in the form id@version. For example, passing home-hero@1 will fetch the content for the home-hero slot in version 1. Not specifying a version number is the same as passing home-hero@latest, which will load the content for the latest version.

options
object

The evaluation options.

route(optional)
object

The context of the current route.

The property names are aligned with those in Next.js for easy forwarding, as shown in the Page router example.

req
NextApiRequest|NextRequest|GetServerSidePropsRequest

The request object.

res
NextApiResponse|NextResponse|GetServerSidePropsResponse

The response object.

clientId(optional)
string

The ID of the client (browser), in the form of a UUID.

This must be a persistent identifier that uniquely identifies the user across sessions.

Note that specifying this option when requesting static content has no effect.

clientAgent(optional)
string

The user agent of the client (browser).

If not specified or unknown, device technology information will be limited or unavailable.

Note that specifying this option when requesting static content has no effect.

clientIp(optional)
string

The IP address of the client (end-user).

Passing 127.0.0.1 makes the API uses IP address of the incoming request, which is useful for local development.

If not specified or unknown, geographic location information will be limited or unavailable.

Note that specifying this option when requesting static content has no effect.

static(optional)
boolean

Whether to fetch static content.

By default, the SDK fetches dynamic content. Set this option to true to fetch the slot's default static content instead.

Default:false
preferredLocale(optional)
string

The locale code to fetch the content.

The code consists of a two-part string that specifies the language and, optionally, the country. For example, en represents English, en-us stands for English (United States), and pt-br for Portuguese (Brazil). It is case-insensitive and supports both hyphens and underscores as separators to accommodate the different conventions used by browsers, libraries, and other systems.

If no content is available in the preferred locale, the default locale content is returned instead.

Default:default locale
userToken(optional)
string

A base64-encoded JSON Web Token (JWT)  that identifies the user.

If the Require authenticated token option is enabled in the  Application settings , a signed JWT is required. In this case, the token must be signed using an  API key  with authentication permissions, or the request will fail with an authorization error.

previewToken(optional)
string

A base64-encoded JSON Web Token (JWT)  that identifies the preview session.

When previewing content, the platform generates a preview token and passes it to your application as a URL parameter. This token must be forwarded through this option to enable preview mode.

timeout(optional)
number

The maximum fetch time in milliseconds.

Once reached, the SDK will abort the request and reject the promise with a timeout error.

baseEndpointUrl(optional)
string

The base URL to use for the API calls.

By default, the SDK uses the production endpoint. This option is helpful for testing purposes and allows you to point the SDK to another environment, such as a mock server.

These are the endpoints that use the base URL:

PathDescription
/client/web/contentEndpoint for client-side retrieval of dynamic content.
/external/web/contentEndpoint for server-side retrieval of dynamic content.
/client/web/static-contentEndpoint for client-side retrieval of static content.
/external/web/static-contentEndpoint for server-side retrieval of static content.

See Integration tests for more information on how to mock the API calls.

extra(optional)
object

Additional options to pass to the fetch function.

logger(optional)
object

A custom logger to handle log messages.

By default, warnings and errors are logged to the console, and everything else is suppressed.

debug
(message: string)=>void

A function to log debug messages.

info
(message: string)=>void

A function to log informational messages.

warn
(message: string)=>void

A function to log warning messages.

error
(message: string)=>void

A function to log error messages.

context(optional)
object

Information about the user context, such as the time zone, campaign, and page.

timeZone(optional)
string

The time zone of the user, represented by an IANA time zone ID , like America/New_York.

This information is used for time-based features like localization and scheduling, and usually comes from the browser's preferences or the user's profile.

campaign(optional)
object

Information about the marketing campaign that brought the user to the page.

For more information on how to use this information, see  Marketing variables;

name(optional)
string

The name of the campaign, such as summer-sale.

This information usually comes from the utm_campaign URL parameter.

source(optional)
string

The source of the campaign, such as google.

This information usually comes from the utm_source URL parameter.

medium(optional)
string

The medium of the campaign, such as cpc.

This information usually comes from the utm_medium URL parameter.

term(optional)
string

The term of the campaign, such as running shoes.

This information usually comes from the utm_term URL parameter.

content(optional)
string

The content of the campaign, such as banner ad.

This information usually comes from the utm_content URL parameter.

page(optional)
object

Information about the page the user is currently viewing.

For more information on how to use this information, see  Navigation variables.

url
string

The URL of the page, such as https://www.example.com/products.

This information usually comes from the window.location.href property.

title(optional)
string

The title of the page, such as Products.

This information usually comes from the document.title property.

referrer(optional)
string

The URL of the page that linked to the current page, such as https://www.google.com.

This information usually comes from the Referer HTTP header or the document.referrer; property.

attributes(optional)
object

The map of attributes to inject in the evaluation context.

The attributes can be referenced in audience conditions using the context variable. For example, suppose you pass the following attributes:

{cities: ["New York", "San Francisco"]}

You can then reference them in queries like:

context's cities include location's city

For more information, see Context variables.

The following restrictions apply to the attributes:

  • Up to 30 entries and 5 levels deep
  • Keys can be either numbers or non-empty strings with a maximum length of 50 characters
  • Values can be null, numbers, booleans, strings (up to 50 characters), or nested maps
  • Nested maps follow the same constraints for keys and values