English
, en-US
, or en-GB
.
es-ES
for Spanish.# Gets a specific article in Spanish
curl --request GET \
--url 'https://deliver.kontent.ai/8d20758c-d74c-4f59-ae04-ee928c0816b7/items/about_us?language=es-ES' \
--header 'content-type: application/json'
# Filters all articles to find the Spanish variant by its URL slug
curl --request GET \
--url 'https://deliver.kontent.ai/8d20758c-d74c-4f59-ae04-ee928c0816b7/items?language=es-ES&system.type=article&elements.url_pattern=acerda-de-nosotros' \
--header 'content-type: application/json'
# Gets content items in Spanish without following language fallbacks
curl --request GET \
--url 'https://deliver.kontent.ai/975bf280-fd91-488c-994c-2f04416e5ee3/items?language=es-ES&system.language=es-ES' \
--header 'content-type: application/json'