English
, en-US
, or en-GB
.
es-ES
for Spanish.// Tip: Find more about JS/TS SDKs at https://kontent.ai/learn/javascript
const KontentDelivery = require('@kontent-ai/delivery-sdk');
const deliveryClient = KontentDelivery.createDeliveryClient({
environmentId: '8d20758c-d74c-4f59-ae04-ee928c0816b7'
});
// Gets a specific article in Spanish
const response = await deliveryClient.item('about_us')
.languageParameter('es-ES')
.toPromise();
// Tip: Find more about JS/TS SDKs at https://kontent.ai/learn/javascript
const KontentDelivery = require('@kontent-ai/delivery-sdk');
const deliveryClient = KontentDelivery.createDeliveryClient({
environmentId: '8d20758c-d74c-4f59-ae04-ee928c0816b7'
});
// Filters all articles to find the Spanish variant by its URL slug
const response = await deliveryClient.items('article')
.type('article')
.languageParameter('es-ES')
.depthParameter(0)
.equalsFilter('elements.url_pattern', 'acerda-de-nosotros')
.toPromise();
// Tip: Find more about JS/TS SDKs at https://kontent.ai/learn/javascript
const KontentDelivery = require('@kontent-ai/delivery-sdk');
const deliveryClient = KontentDelivery.createDeliveryClient({
environmentId: '975bf280-fd91-488c-994c-2f04416e5ee3',
});
// Gets content items in Spanish without following language fallbacks
const response = await deliveryClient.items()
.languageParameter('es-ES')
.equalsFilter('system.language', 'es-ES')
.toPromise();