Debugging

Site object{{ site | inspect }}
{
  "id": "189063c4-bf77-8b18-8bf7-8037402f5acf",
  "name": "Debugging",
  "lang": "en",
  "accountId": "185d73b6-7e7b-80a5-bd7f-dc10366b38f3",
  "domain": "test.cradlecms.com",
  "theme": "189063cb-1317-8834-98da-c5ed0429de80",
  "createdAt": "2026-02-02T09:25:50Z",
  "meta": {
    "h1": "Debugging",
    "title": "Debugging",
    "description": "",
    "keywords": "",
    "data": null
  },
  "data": {
    "robots": "User-agent: *\nDisallow:\n"
  },
  "langs": {
    "en": {
      "meta": {
        "h1": "Debugging",
        "title": "Debugging",
        "description": "",
        "keywords": "",
        "data": null
      }
    }
  }
}
Site specific objects

Input

                    
                        {{ metaTitle }}
                        {{ metaDescription }}
                        {{ metaKeywords }}
                        {{ canonicalUrl }}
                        {{ template }}
                    
                

Output

                    
                        Debugging
                        
                        
                        https://test.cradlecms.com
                        index
                    
                
Request object{{ request | inspect }}
{
  "host": "test.cradlecms.com",
  "origin": "",
  "path": "/",
  "query": "",
  "referer": "",
  "remote": "216.73.216.169",
  "scheme": "https"
}
| url filter tests on global objects

page | url

Input

    
    {% assign pageGlobal = pages[0] %}
    {{ pageGlobal | url }}
    

Output

/page/about

Has content

blog | url

Input

    
    {% assign blogGlobal = blogs[0] %}
    {{ blogGlobal | url }}
    

Output

/blog/birds

Has content

article | url

Output

/blog/birds/article/fairywren

Has content

Has four parts

Input

    
    {% let firstBlog = blogs[0] %}
    {% assign articleGlobal = firstBlog.articles[0] %}
    {{ articleGlobal | url }}
    

collection | url

Input

    
    {% assign collectionGlobal = collections[0] %}
    {{ collectionGlobal | url }}
    

Output

/collection/bevarages

Has content

product | url

Input

    
    {% assign productGlobal = products[0] %}
    {{ productGlobal | url }}
    

Output

/product/smoothie

Has content



{{ canonicalUrl }}: https://test.cradlecms.com ; contains https://contains site URL

Pages object

Pages object {{ pages }} has content

Input

{{ pages | print_r }}

Outout

[
  {
    "author": "",
    "authorId": "18639375-58ce-84f4-a5ca-202209038dc8",
    "createdAt": "2026-02-02T09:26:25.182Z",
    "entity": "page",
    "format": "RTE",
    "handle": "about",
    "html": "\u003cp\u003eIn academic terms, a text is anything that conveys a set of meanings to \nthe person who examines it. You might have thought that texts were \nlimited to written materials, such as books, magazines, newspapers, and \n‘zines (an informal term for magazine that refers especially to fanzines\n and webzines). Those items are indeed texts—but so are movies, \npaintings, television shows, songs, political cartoons, online \nmaterials, advertisements, maps, works of art, and even rooms full of \npeople. If we can look at something, explore it, find layers of meaning \nin it, and draw information and conclusions from it, we’re looking at a \ntext.\u003c/p\u003e",
    "id": "189063cc-e29c-8209-8065-af3b0c3d03e1",
    "image": {
      "src": "",
      "alt": "",
      "alts": null
    },
    "lang": "en",
    "meta": {
      "h1": "About",
      "title": "About",
      "description": "",
      "keywords": "",
      "data": null
    },
    "publishAt": "2026-02-02T09:27:17.314Z",
    "published": true,
    "tags": null,
    "template": "",
    "text": "In academic terms, a text is anything that conveys a set of meanings to \nthe person who examines it. You might have thought that texts were \nlimited to written materials, such as books, magazines, newspapers, and \n‘zines (an informal term for magazine that refers especially to fanzines\n and webzines). Those items are indeed texts—but so are movies, \npaintings, television shows, songs, political cartoons, online \nmaterials, advertisements, maps, works of art, and even rooms full of \npeople. If we can look at something, explore it, find layers of meaning \nin it, and draw information and conclusions from it, we’re looking at a \ntext.",
    "title": "About",
    "updatedAt": "2026-02-02T09:27:11.979Z",
    "url": ""
  },
  {
    "author": "Debugger",
    "authorId": "1890647c-3925-8752-a26c-03021b60c2a8",
    "createdAt": "2026-02-02T09:53:27.224Z",
    "entity": "page",
    "format": "RTE",
    "handle": "filters",
    "html": "",
    "id": "18906546-8bd4-8e19-bda1-7c3e6b4ffe0a",
    "image": {
      "src": "",
      "alt": "",
      "alts": null
    },
    "lang": "en",
    "meta": {
      "h1": "Filters",
      "title": "Filters",
      "description": "",
      "keywords": "",
      "data": null
    },
    "publishAt": "2026-02-02T09:53:32.553Z",
    "published": true,
    "tags": null,
    "template": "filters",
    "text": "",
    "title": "Filters",
    "updatedAt": "2026-02-02T09:53:27Z",
    "url": ""
  }
]
Page

Input


        {% assign page = pages[0] %}
        {{ page | print_r }}
        

Output

{
  "author": "",
  "authorId": "18639375-58ce-84f4-a5ca-202209038dc8",
  "createdAt": "2026-02-02T09:26:25.182Z",
  "entity": "page",
  "format": "RTE",
  "handle": "about",
  "html": "\u003cp\u003eIn academic terms, a text is anything that conveys a set of meanings to \nthe person who examines it. You might have thought that texts were \nlimited to written materials, such as books, magazines, newspapers, and \n‘zines (an informal term for magazine that refers especially to fanzines\n and webzines). Those items are indeed texts—but so are movies, \npaintings, television shows, songs, political cartoons, online \nmaterials, advertisements, maps, works of art, and even rooms full of \npeople. If we can look at something, explore it, find layers of meaning \nin it, and draw information and conclusions from it, we’re looking at a \ntext.\u003c/p\u003e",
  "id": "189063cc-e29c-8209-8065-af3b0c3d03e1",
  "image": {
    "src": "",
    "alt": "",
    "alts": null
  },
  "lang": "en",
  "meta": {
    "h1": "About",
    "title": "About",
    "description": "",
    "keywords": "",
    "data": null
  },
  "publishAt": "2026-02-02T09:27:17.314Z",
  "published": true,
  "tags": null,
  "template": "",
  "text": "In academic terms, a text is anything that conveys a set of meanings to \nthe person who examines it. You might have thought that texts were \nlimited to written materials, such as books, magazines, newspapers, and \n‘zines (an informal term for magazine that refers especially to fanzines\n and webzines). Those items are indeed texts—but so are movies, \npaintings, television shows, songs, political cartoons, online \nmaterials, advertisements, maps, works of art, and even rooms full of \npeople. If we can look at something, explore it, find layers of meaning \nin it, and draw information and conclusions from it, we’re looking at a \ntext.",
  "title": "About",
  "updatedAt": "2026-02-02T09:27:11.979Z",
  "url": ""
}
Tests | url

Input

{{ page | url }}

Output

/page/about

Blogs object

Blogs object {{ blogs }} has content
[
  {
    "articleCount": 2,
    "articleTags": null,
    "articles": {},
    "createdAt": "2026-02-02T09:27:37.011Z",
    "entity": "blog",
    "format": "MD",
    "handle": "birds",
    "html": "",
    "id": "189063dd-9bf3-8dcc-91b5-13ead51fed62",
    "image": {
      "src": "",
      "alt": "",
      "alts": null
    },
    "lang": "en",
    "meta": {
      "h1": "Birds",
      "title": "Birds",
      "description": "",
      "keywords": "",
      "data": null
    },
    "policy": 0,
    "publishAt": "0001-01-01T00:00:00Z",
    "published": true,
    "tags": null,
    "template": "",
    "text": "",
    "title": "Birds"
  }
]
One blog {{ firstBlog }}

Liquid


        {% assign firstBlog = blogs[0] %}
        {{ firstBlog | print_r }}
        

Result

{"articleCount":2,"articleTags":null,"articles":{},"createdAt":"2026-02-02T09:27:37.011Z","entity":"blog","format":"MD","handle":"birds","html":"","id":"189063dd-9bf3-8dcc-91b5-13ead51fed62","image":{"src":"","alt":"","alts":null},"lang":"en","meta":{"h1":"Birds","title":"Birds","description":"","keywords":"","data":null},"policy":0,"publishAt":"0001-01-01T00:00:00Z","published":true,"tags":null,"template":"","text":"","title":"Birds"}

Links

URL:

null

Articles

blog.articles object {{ firstBlog.articles }} has content

Liquid


        {% let firstBlog = blogs | first %}
        {{ firstBlog.articles | print_r }}
        

Result

[
  {
    "author": "",
    "authorId": "18639375-58ce-84f4-a5ca-202209038dc8",
    "blog": "birds",
    "blogId": "189063dd-9bf3-8dcc-91b5-13ead51fed62",
    "createdAt": "2026-02-02T09:32:14.553Z",
    "entity": "article",
    "excerpt": "",
    "format": "MD",
    "handle": "fairywren",
    "html": "\u003cp\u003eKnown and loved by Australians and gift-shop-visiting tourists alike, Superb Fairywrens may be one of Australia’s most well-known birds. This charismatic species is as likely to be found in back gardens and botanical gardens as it is on vegetated roadsides throughout south-eastern Australia.\u003c/p\u003e\n\n\u003cp\u003eBright Male Plumage: Pale blue top of head and cheeks separated by a stripe of black that runs through the eye and around the nape of the neck. Deep blue breast and throat are ringed by black.  Tail similarly deep blue. Belly is stark white. Upper back is pale blue, bill and lower back are black.\u003c/p\u003e\n\n\u003cp\u003eIntermediate Plumage: Brown plumage interspersed with bright plumage all over body, especially on head. Tail is deep blue.\u003c/p\u003e\n\n\u003cp\u003eDull Male Plumage: Brown back with white breast and belly.To distinguish from female, look for black bill and lack of rufous-brown eye lores.\u003c/p\u003e\n\n\u003cp\u003eFemale and Juvenile Plumage: Plumage as dull male except rufous-brown eye lores that extend from bill of same color. Tail brown throughout most of range, becoming slightly bluer in southeastern South Australia.\u003c/p\u003e\n",
    "id": "1890641e-3ac0-863d-b7b3-76e98b8f9cb5",
    "image": {
      "src": "superb-fairywren-8220199_1920.jpg",
      "alt": "",
      "alts": null
    },
    "lang": "en",
    "meta": {
      "h1": "Fairywren",
      "title": "Fairywren",
      "description": "",
      "keywords": "",
      "data": null
    },
    "next": {
      "id": "18906406-7c14-8496-bd00-558c217f8ad6",
      "blogId": "189063dd-9bf3-8dcc-91b5-13ead51fed62",
      "blog": "birds",
      "authorId": "18639375-58ce-84f4-a5ca-202209038dc8",
      "lang": "en",
      "handle": "blue-tit",
      "title": "Blue tit",
      "image": {
        "src": "blue-tit-8024809_1920.jpg",
        "alt": "",
        "alts": null
      }
    },
    "previous": null,
    "publishAt": "2026-02-02T09:32:48.876Z",
    "published": true,
    "tags": null,
    "template": "",
    "text": "Known and loved by Australians and gift-shop-visiting tourists alike, Superb Fairywrens may be one of Australia’s most well-known birds. This charismatic species is as likely to be found in back gardens and botanical gardens as it is on vegetated roadsides throughout south-eastern Australia.\n\nBright Male Plumage: Pale blue top of head and cheeks separated by a stripe of black that runs through the eye and around the nape of the neck. Deep blue breast and throat are ringed by black.  Tail similarly deep blue. Belly is stark white. Upper back is pale blue, bill and lower back are black.\n\nIntermediate Plumage: Brown plumage interspersed with bright plumage all over body, especially on head. Tail is deep blue.\n\nDull Male Plumage: Brown back with white breast and belly.To distinguish from female, look for black bill and lack of rufous-brown eye lores.\n\nFemale and Juvenile Plumage: Plumage as dull male except rufous-brown eye lores that extend from bill of same color. Tail brown throughout most of range, becoming slightly bluer in southeastern South Australia.",
    "title": "Fairywren",
    "updatedAt": "2026-02-02T09:32:46.313Z",
    "url": ""
  },
  {
    "author": "",
    "authorId": "18639375-58ce-84f4-a5ca-202209038dc8",
    "blog": "birds",
    "blogId": "189063dd-9bf3-8dcc-91b5-13ead51fed62",
    "createdAt": "2026-02-02T09:30:32.57Z",
    "entity": "article",
    "excerpt": "",
    "format": "MD",
    "handle": "blue-tit",
    "html": "\u003cp\u003eThe Eurasian blue tit (Cyanistes caeruleus) is a small passerine bird in the tit family, Paridae. It is easily recognised by its blue and yellow plumage and small size.\u003c/p\u003e\n\n\u003cp\u003eThe Eurasian blue tit is a widespread and common resident breeder throughout temperate and subarctic Europe and parts of western Asia. It inhabits deciduous or mixed woodlands, often with a high proportion of oak, and it is usually non-migratory. They typically nest in tree holes but readily adapt to using nest boxes when necessary. Their main rivals for nests and in the search for food are the larger, somewhat more common great tits (Parus major).\u003c/p\u003e\n\n\u003cp\u003eThe Eurasian blue tit\u0026rsquo;s diet consists mainly of insects and spiders. Outside of the breeding season, they also eat seeds and other plant-based foods. These birds are known for their acrobatic abilities; they can grip the outermost branches of trees and shrubs and hang upside down while searching for food.\u003c/p\u003e\n",
    "id": "18906406-7c14-8496-bd00-558c217f8ad6",
    "image": {
      "src": "blue-tit-8024809_1920.jpg",
      "alt": "",
      "alts": null
    },
    "lang": "en",
    "meta": {
      "h1": "Blue tit",
      "title": "Blue tit",
      "description": "",
      "keywords": "",
      "data": null
    },
    "next": null,
    "previous": {
      "id": "1890641e-3ac0-863d-b7b3-76e98b8f9cb5",
      "blogId": "189063dd-9bf3-8dcc-91b5-13ead51fed62",
      "blog": "birds",
      "authorId": "18639375-58ce-84f4-a5ca-202209038dc8",
      "lang": "en",
      "handle": "fairywren",
      "title": "Fairywren",
      "image": {
        "src": "superb-fairywren-8220199_1920.jpg",
        "alt": "",
        "alts": null
      }
    },
    "publishAt": "2026-02-02T09:31:46.528Z",
    "published": true,
    "tags": null,
    "template": "",
    "text": "The Eurasian blue tit (Cyanistes caeruleus) is a small passerine bird in the tit family, Paridae. It is easily recognised by its blue and yellow plumage and small size.\n\nThe Eurasian blue tit is a widespread and common resident breeder throughout temperate and subarctic Europe and parts of western Asia. It inhabits deciduous or mixed woodlands, often with a high proportion of oak, and it is usually non-migratory. They typically nest in tree holes but readily adapt to using nest boxes when necessary. Their main rivals for nests and in the search for food are the larger, somewhat more common great tits (Parus major).\n\nThe Eurasian blue tit's diet consists mainly of insects and spiders. Outside of the breeding season, they also eat seeds and other plant-based foods. These birds are known for their acrobatic abilities; they can grip the outermost branches of trees and shrubs and hang upside down while searching for food. ",
    "title": "Blue tit",
    "updatedAt": "2026-02-02T09:31:01.978Z",
    "url": ""
  }
]

Article

One article

Liquid


        {% assign article = firstBlog.articles[0] %}
        {{ article | inspect }}
        

Result

{"author":"","authorId":"18639375-58ce-84f4-a5ca-202209038dc8","blog":"birds","blogId":"189063dd-9bf3-8dcc-91b5-13ead51fed62","createdAt":"2026-02-02T09:32:14.553Z","entity":"article","excerpt":"","format":"MD","handle":"fairywren","html":"\u003cp\u003eKnown and loved by Australians and gift-shop-visiting tourists alike, Superb Fairywrens may be one of Australia’s most well-known birds. This charismatic species is as likely to be found in back gardens and botanical gardens as it is on vegetated roadsides throughout south-eastern Australia.\u003c/p\u003e\n\n\u003cp\u003eBright Male Plumage: Pale blue top of head and cheeks separated by a stripe of black that runs through the eye and around the nape of the neck. Deep blue breast and throat are ringed by black. Tail similarly deep blue. Belly is stark white. Upper back is pale blue, bill and lower back are black.\u003c/p\u003e\n\n\u003cp\u003eIntermediate Plumage: Brown plumage interspersed with bright plumage all over body, especially on head. Tail is deep blue.\u003c/p\u003e\n\n\u003cp\u003eDull Male Plumage: Brown back with white breast and belly.To distinguish from female, look for black bill and lack of rufous-brown eye lores.\u003c/p\u003e\n\n\u003cp\u003eFemale and Juvenile Plumage: Plumage as dull male except rufous-brown eye lores that extend from bill of same color. Tail brown throughout most of range, becoming slightly bluer in southeastern South Australia.\u003c/p\u003e\n","id":"1890641e-3ac0-863d-b7b3-76e98b8f9cb5","image":{"src":"superb-fairywren-8220199_1920.jpg","alt":"","alts":null},"lang":"en","meta":{"h1":"Fairywren","title":"Fairywren","description":"","keywords":"","data":null},"next":{"id":"18906406-7c14-8496-bd00-558c217f8ad6","blogId":"189063dd-9bf3-8dcc-91b5-13ead51fed62","blog":"birds","authorId":"18639375-58ce-84f4-a5ca-202209038dc8","lang":"en","handle":"blue-tit","title":"Blue tit","image":{"src":"blue-tit-8024809_1920.jpg","alt":"","alts":null}},"previous":null,"publishAt":"2026-02-02T09:32:48.876Z","published":true,"tags":null,"template":"","text":"Known and loved by Australians and gift-shop-visiting tourists alike, Superb Fairywrens may be one of Australia’s most well-known birds. This charismatic species is as likely to be found in back gardens and botanical gardens as it is on vegetated roadsides throughout south-eastern Australia.\n\nBright Male Plumage: Pale blue top of head and cheeks separated by a stripe of black that runs through the eye and around the nape of the neck. Deep blue breast and throat are ringed by black. Tail similarly deep blue. Belly is stark white. Upper back is pale blue, bill and lower back are black.\n\nIntermediate Plumage: Brown plumage interspersed with bright plumage all over body, especially on head. Tail is deep blue.\n\nDull Male Plumage: Brown back with white breast and belly.To distinguish from female, look for black bill and lack of rufous-brown eye lores.\n\nFemale and Juvenile Plumage: Plumage as dull male except rufous-brown eye lores that extend from bill of same color. Tail brown throughout most of range, becoming slightly bluer in southeastern South Australia.","title":"Fairywren","updatedAt":"2026-02-02T09:32:46.313Z","url":""}
Tests Links

Input

{{ article | url }}

output

URL: /blog/birds/article/fairywren

Collections

Collections object {{ collections }} has content
[
  {
    "conditions": [
      {
        "id": "1890650d-321e-861c-a17d-7d2b09a83578",
        "field": "type",
        "operator": "=",
        "condition": "Beverage"
      }
    ],
    "createdAt": "2026-02-02T09:49:13.431Z",
    "entity": "collection",
    "format": "RTE",
    "handle": "bevarages",
    "html": "",
    "id": "1890650b-7494-86e2-9025-1cd66c8b8e3e",
    "image": {
      "src": "",
      "alt": "",
      "alts": null
    },
    "lang": "en",
    "meta": {
      "h1": "Bevarages",
      "title": "Bevarages",
      "description": "",
      "keywords": "",
      "data": null
    },
    "onlyAvailable": false,
    "productTags": null,
    "productTypes": [
      "Beverage"
    ],
    "productVendors": [
      "Coffee shop"
    ],
    "products": {},
    "publishAt": "2026-02-02T09:51:00.092Z",
    "published": true,
    "siteId": "",
    "sorting": "",
    "tags": null,
    "template": "",
    "text": "",
    "title": "Bevarages",
    "type": "COLLECTION_AUTOMATIC",
    "updatedAt": "2026-02-02T09:50:37.734Z",
    "url": ""
  }
]
Collections.products object [{"available":true,"collections":null,"compareAtPrice":0,"compareAtPriceMax":0,"compareAtPriceMin":0,"compareAtPriceVaries":false,"createdAt":"2026-02-02T09:42:16.988Z","currency":"EUR","entity":"product","featuredImage":{"src":"fruit-3222313_1920.jpg","alt":"","alts":null},"firstAvailableVariantId":"00000000-0000-0000-0000-000000000000","format":"RTE","fulfillmentService":"","handle":"smoothie","html":"","id":"189064aa-7ea4-839f-8e28-ba560bfad23f","images":null,"inventoryLocation":"","inventoryManagement":"INVENTORY_INTERNAL","inventoryPolicy":"SOLD_OUT_DENY","keyFeatures":null,"lang":"en","license":false,"meta":{"h1":"Smoothie","title":"Smoothie","description":"","keywords":"","data":null},"optionKeys":["flavour"],"options":{"flavour":"Flavour"},"price":2500,"priceMax":2500,"priceMin":2500,"priceVaries":false,"publishAt":"2026-02-02T09:47:24.791Z","published":true,"quantity":33,"selectedVariant":{},"shippable":true,"tags":null,"template":"","text":"","title":"Smoothie","type":"Beverage","updatedAt":"2026-02-02T09:47:19.644Z","url":"","variants":{},"vendor":"Coffee shop","vendorId":"189064b3-9977-844d-ad63-a105aef466d9"},{"available":true,"collections":null,"compareAtPrice":0,"compareAtPriceMax":0,"compareAtPriceMin":0,"compareAtPriceVaries":false,"createdAt":"2026-02-02T09:47:55.066Z","currency":"EUR","entity":"product","featuredImage":{"src":"coffee-8388244_1920.jpg","alt":"","alts":null},"firstAvailableVariantId":"00000000-0000-0000-0000-000000000000","format":"RTE","fulfillmentService":"","handle":"coffee","html":"","id":"189064f9-35a5-83c9-87d6-cb82d393b31c","images":null,"inventoryLocation":"","inventoryManagement":"INVENTORY_INTERNAL","inventoryPolicy":"SOLD_OUT_DENY","keyFeatures":null,"lang":"en","license":false,"meta":{"h1":"Coffee","title":"Coffee","description":"","keywords":"","data":null},"optionKeys":null,"options":null,"price":0,"priceMax":0,"priceMin":0,"priceVaries":false,"publishAt":"2026-02-02T09:48:51.157Z","published":true,"quantity":0,"selectedVariant":{},"shippable":true,"tags":null,"template":"","text":"","title":"Coffee","type":"Beverage","updatedAt":"2026-02-02T09:48:03.228Z","url":"","variants":{},"vendor":"Coffee shop","vendorId":"189064b3-9977-844d-ad63-a105aef466d9"},{"available":true,"collections":null,"compareAtPrice":0,"compareAtPriceMax":0,"compareAtPriceMin":0,"compareAtPriceVaries":false,"createdAt":"2026-02-02T09:48:11.582Z","currency":"EUR","entity":"product","featuredImage":{"src":"pexels-beverage-1869722_1920.jpg","alt":"","alts":null},"firstAvailableVariantId":"00000000-0000-0000-0000-000000000000","format":"RTE","fulfillmentService":"","handle":"tea","html":"","id":"189064fd-0e18-872e-86c7-dd41fba6e9f7","images":null,"inventoryLocation":"","inventoryManagement":"INVENTORY_INTERNAL","inventoryPolicy":"SOLD_OUT_DENY","keyFeatures":null,"lang":"en","license":false,"meta":{"h1":"Tea","title":"Tea","description":"","keywords":"","data":null},"optionKeys":null,"options":null,"price":2000,"priceMax":2000,"priceMin":2000,"priceVaries":false,"publishAt":"2026-02-02T09:48:44.311Z","published":true,"quantity":100,"selectedVariant":{},"shippable":true,"tags":null,"template":"","text":"","title":"Tea","type":"Beverage","updatedAt":"2026-02-02T09:48:33.229Z","url":"","variants":{},"vendor":"Coffee shop","vendorId":"189064b3-9977-844d-ad63-a105aef466d9"}]

Products

Products object {{ products }} has content
[
  {
    "available": true,
    "collections": null,
    "compareAtPrice": 0,
    "compareAtPriceMax": 0,
    "compareAtPriceMin": 0,
    "compareAtPriceVaries": false,
    "createdAt": "2026-02-02T09:42:16.988Z",
    "currency": "EUR",
    "entity": "product",
    "featuredImage": {
      "src": "fruit-3222313_1920.jpg",
      "alt": "",
      "alts": null
    },
    "firstAvailableVariantId": "00000000-0000-0000-0000-000000000000",
    "format": "RTE",
    "fulfillmentService": "",
    "handle": "smoothie",
    "html": "",
    "id": "189064aa-7ea4-839f-8e28-ba560bfad23f",
    "images": null,
    "inventoryLocation": "",
    "inventoryManagement": "INVENTORY_INTERNAL",
    "inventoryPolicy": "SOLD_OUT_DENY",
    "keyFeatures": null,
    "lang": "en",
    "license": false,
    "meta": {
      "h1": "Smoothie",
      "title": "Smoothie",
      "description": "",
      "keywords": "",
      "data": null
    },
    "optionKeys": [
      "flavour"
    ],
    "options": {
      "flavour": "Flavour"
    },
    "price": 2500,
    "priceMax": 2500,
    "priceMin": 2500,
    "priceVaries": false,
    "publishAt": "2026-02-02T09:47:24.791Z",
    "published": true,
    "quantity": 33,
    "selectedVariant": {},
    "shippable": true,
    "tags": null,
    "template": "",
    "text": "",
    "title": "Smoothie",
    "type": "Beverage",
    "updatedAt": "2026-02-02T09:47:19.644Z",
    "url": "",
    "variants": {},
    "vendor": "Coffee shop",
    "vendorId": "189064b3-9977-844d-ad63-a105aef466d9"
  },
  {
    "available": true,
    "collections": null,
    "compareAtPrice": 0,
    "compareAtPriceMax": 0,
    "compareAtPriceMin": 0,
    "compareAtPriceVaries": false,
    "createdAt": "2026-02-02T09:47:55.066Z",
    "currency": "EUR",
    "entity": "product",
    "featuredImage": {
      "src": "coffee-8388244_1920.jpg",
      "alt": "",
      "alts": null
    },
    "firstAvailableVariantId": "00000000-0000-0000-0000-000000000000",
    "format": "RTE",
    "fulfillmentService": "",
    "handle": "coffee",
    "html": "",
    "id": "189064f9-35a5-83c9-87d6-cb82d393b31c",
    "images": null,
    "inventoryLocation": "",
    "inventoryManagement": "INVENTORY_INTERNAL",
    "inventoryPolicy": "SOLD_OUT_DENY",
    "keyFeatures": null,
    "lang": "en",
    "license": false,
    "meta": {
      "h1": "Coffee",
      "title": "Coffee",
      "description": "",
      "keywords": "",
      "data": null
    },
    "optionKeys": null,
    "options": null,
    "price": 0,
    "priceMax": 0,
    "priceMin": 0,
    "priceVaries": false,
    "publishAt": "2026-02-02T09:48:51.157Z",
    "published": true,
    "quantity": 0,
    "selectedVariant": {},
    "shippable": true,
    "tags": null,
    "template": "",
    "text": "",
    "title": "Coffee",
    "type": "Beverage",
    "updatedAt": "2026-02-02T09:48:03.228Z",
    "url": "",
    "variants": {},
    "vendor": "Coffee shop",
    "vendorId": "189064b3-9977-844d-ad63-a105aef466d9"
  },
  {
    "available": true,
    "collections": null,
    "compareAtPrice": 0,
    "compareAtPriceMax": 0,
    "compareAtPriceMin": 0,
    "compareAtPriceVaries": false,
    "createdAt": "2026-02-02T09:48:11.582Z",
    "currency": "EUR",
    "entity": "product",
    "featuredImage": {
      "src": "pexels-beverage-1869722_1920.jpg",
      "alt": "",
      "alts": null
    },
    "firstAvailableVariantId": "00000000-0000-0000-0000-000000000000",
    "format": "RTE",
    "fulfillmentService": "",
    "handle": "tea",
    "html": "",
    "id": "189064fd-0e18-872e-86c7-dd41fba6e9f7",
    "images": null,
    "inventoryLocation": "",
    "inventoryManagement": "INVENTORY_INTERNAL",
    "inventoryPolicy": "SOLD_OUT_DENY",
    "keyFeatures": null,
    "lang": "en",
    "license": false,
    "meta": {
      "h1": "Tea",
      "title": "Tea",
      "description": "",
      "keywords": "",
      "data": null
    },
    "optionKeys": null,
    "options": null,
    "price": 2000,
    "priceMax": 2000,
    "priceMin": 2000,
    "priceVaries": false,
    "publishAt": "2026-02-02T09:48:44.311Z",
    "published": true,
    "quantity": 100,
    "selectedVariant": {},
    "shippable": true,
    "tags": null,
    "template": "",
    "text": "",
    "title": "Tea",
    "type": "Beverage",
    "updatedAt": "2026-02-02T09:48:33.229Z",
    "url": "",
    "variants": {},
    "vendor": "Coffee shop",
    "vendorId": "189064b3-9977-844d-ad63-a105aef466d9"
  }
]
One product {% assign product = products[0] %}

Liquid


        {% assign product = products[0] %}
        {{ product | inspect }}
        

Result

{"available":true,"collections":null,"compareAtPrice":0,"compareAtPriceMax":0,"compareAtPriceMin":0,"compareAtPriceVaries":false,"createdAt":"2026-02-02T09:42:16.988Z","currency":"EUR","entity":"product","featuredImage":{"src":"fruit-3222313_1920.jpg","alt":"","alts":null},"firstAvailableVariantId":"00000000-0000-0000-0000-000000000000","format":"RTE","fulfillmentService":"","handle":"smoothie","html":"","id":"189064aa-7ea4-839f-8e28-ba560bfad23f","images":null,"inventoryLocation":"","inventoryManagement":"INVENTORY_INTERNAL","inventoryPolicy":"SOLD_OUT_DENY","keyFeatures":null,"lang":"en","license":false,"meta":{"h1":"Smoothie","title":"Smoothie","description":"","keywords":"","data":null},"optionKeys":["flavour"],"options":{"flavour":"Flavour"},"price":2500,"priceMax":2500,"priceMin":2500,"priceVaries":false,"publishAt":"2026-02-02T09:47:24.791Z","published":true,"quantity":33,"selectedVariant":{},"shippable":true,"tags":null,"template":"","text":"","title":"Smoothie","type":"Beverage","updatedAt":"2026-02-02T09:47:19.644Z","url":"","variants":{},"vendor":"Coffee shop","vendorId":"189064b3-9977-844d-ad63-a105aef466d9"}
Tests Links

Input

{{ product | url }}

output

URL: /product/smoothie

Product variant

Products.variants object [{"available":true,"co":"","compareAtPrice":0,"createdAt":"2026-02-02T09:42:17Z","currency":"EUR","currencyRate":0,"ean":"","entity":"product_variant","handle":"","height":0,"hts":"","id":"189064aa-7f5a-8625-a39d-6098289eb1f7","image":"","length":0,"license":false,"meta":null,"mid":"","options":{"flavour":"Pineapple"},"position":1,"price":2500,"productId":"189064aa-7ea4-839f-8e28-ba560bfad23f","publishAt":"2026-02-02T09:42:17Z","purchasePrice":0,"quantity":10,"shippable":false,"sku":"","title":" | Pineapple","type":"","updatedAt":"2026-02-02T09:42:17Z","vendorId":"","weight":0,"width":0},{"available":true,"co":"","compareAtPrice":0,"createdAt":"2026-02-02T09:43:56.498Z","currency":"EUR","currencyRate":0,"ean":"","entity":"product_variant","handle":"","height":0,"hts":"","id":"189064c1-a9ea-8a26-a45d-5fcf4e9920fd","image":"","length":0,"license":false,"meta":null,"mid":"","options":{"flavour":"Raspberry"},"position":2,"price":2500,"productId":"189064aa-7ea4-839f-8e28-ba560bfad23f","publishAt":"2026-02-02T09:43:56.498Z","purchasePrice":0,"quantity":10,"shippable":false,"sku":"","title":" | Raspberry","type":"","updatedAt":"2026-02-02T09:43:56Z","vendorId":"","weight":0,"width":0},{"available":true,"co":"","compareAtPrice":0,"createdAt":"2026-02-02T09:44:51.458Z","currency":"EUR","currencyRate":0,"ean":"","entity":"product_variant","handle":"","height":0,"hts":"","id":"189064ce-75d2-8204-96ff-e85d9dc7340e","image":"","length":0,"license":false,"meta":null,"mid":"","options":{"flavour":"Kiwi"},"position":3,"price":2500,"productId":"189064aa-7ea4-839f-8e28-ba560bfad23f","publishAt":"2026-02-02T09:44:51.458Z","purchasePrice":0,"quantity":10,"shippable":false,"sku":"","title":" | Kiwi","type":"","updatedAt":"2026-02-02T09:44:51Z","vendorId":"","weight":0,"width":0},{"available":true,"co":"","compareAtPrice":0,"createdAt":"2026-02-02T09:46:32.382Z","currency":"EUR","currencyRate":0,"ean":"","entity":"product_variant","handle":"","height":0,"hts":"","id":"189064e5-f54d-8238-ba16-b7510ae8e176","image":"","length":0,"license":false,"meta":null,"mid":"","options":{"flavour":"blueberry"},"position":4,"price":2500,"productId":"189064aa-7ea4-839f-8e28-ba560bfad23f","publishAt":"2026-02-02T09:46:32.382Z","purchasePrice":0,"quantity":3,"shippable":false,"sku":"","title":" | blueberry","type":"","updatedAt":"2026-02-02T09:46:32Z","vendorId":"","weight":0,"width":0}]

Navigation

Navigation object {{ navigation }} has content
[
  {
    "entity": "navigation",
    "filter": "",
    "handle": "main",
    "id": "1890646c-c32c-8658-aa1b-ffa06392f7ef",
    "image": "",
    "lang": "",
    "links": [
      {
        "id": "1890654d-6179-85c8-b7e6-3a031eab12ae",
        "type": "page",
        "param": "18906546-8bd4-8e19-bda1-7c3e6b4ffe0a",
        "title": "Filters",
        "handle": "filters"
      },
      {
        "id": "1890646e-de4a-8dbd-8ead-a5392612ed9e",
        "type": "page",
        "param": "189063cc-e29c-8209-8065-af3b0c3d03e1",
        "title": "About",
        "handle": "about"
      },
      {
        "id": "18906473-b24b-83d5-b7f1-be0019d223af",
        "type": "blog",
        "param": "189063dd-9bf3-8dcc-91b5-13ead51fed62",
        "title": "Birdblog",
        "handle": "birds"
      }
    ],
    "navId": "1890646c-c32c-8658-aa1b-ffa06392f7ef",
    "param": "",
    "root": true,
    "title": "Main",
    "type": "navigation",
    "url": ""
  }
]
Countries object {{ countries }} has content
{
  "AD": {
    "name": "Andorra",
    "code": "AD",
    "code3": "AND",
    "tld": ".ad",
    "region": "Europe",
    "currencies": [
      "EUR"
    ],
    "languages": [
      "ca"
    ]
  },
  "AE": {
    "name": "United Arab Emirates",
    "code": "AE",
    "code3": "ARE",
    "tld": ".ae,امارات.",
    "region": "Asia",
    "currencies": [
      "AED"
    ],
    "languages": [
      "ar"
    ]
  },
  "AF": {
    "name": "Afghanistan",
    "code": "AF",
    "code3": "AFG",
    "tld": ".af",
    "region": "Asia",
    "currencies": [
      "AFN"
    ],
    "languages": [
      "tk",
      "fa",
      "ps"
    ]
  },
  "AG": {
    "name": "Antigua and Barbuda",
    "code": "AG",
    "code3": "ATG",
    "tld": ".ag",
    "region": "Americas",
    "currencies": [
      "XCD"
    ],
    "languages": [
      "en"
    ]
  },
  "AI": {
    "name": "Anguilla",
    "code": "AI",
    "code3": "AIA",
    "tld": ".ai",
    "region": "Americas",
    "currencies": [
      "XCD"
    ],
    "languages": [
      "en"
    ]
  },
  "AL": {
    "name": "Albania",
    "code": "AL",
    "code3": "ALB",
    "tld": ".al",
    "region": "Europe",
    "currencies": [
      "ALL"
    ],
    "languages": [
      "sq"
    ]
  },
  "AM": {
    "name": "Armenia",
    "code": "AM",
    "code3": "ARM",
    "tld": ".am",
    "region": "Asia",
    "currencies": [
      "AMD"
    ],
    "languages": [
      "hy",
      "ru"
    ]
  },
  "AO": {
    "name": "Angola",
    "code": "AO",
    "code3": "AGO",
    "tld": ".ao",
    "region": "Africa",
    "currencies": [
      "AOA"
    ],
    "languages": [
      "pt"
    ]
  },
  "AQ": {
    "name": "Antarctica",
    "code": "AQ",
    "code3": "ATA",
    "tld": ".aq"
  },
  "AR": {
    "name": "Argentina",
    "code": "AR",
    "code3": "ARG",
    "tld": ".ar",
    "region": "Americas",
    "currencies": [
      "ARS"
    ],
    "languages": [
      "es",
      "gn"
    ]
  },
  "AS": {
    "name": "American Samoa",
    "code": "AS",
    "code3": "ASM",
    "tld": ".as",
    "region": "Oceania",
    "currencies": [
      "USD"
    ],
    "languages": [
      "sm",
      "en"
    ]
  },
  "AT": {
    "name": "Austria",
    "code": "AT",
    "code3": "AUT",
    "tld": ".at",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "EUR"
    ],
    "languages": [
      "de"
    ]
  },
  "AU": {
    "name": "Australia",
    "code": "AU",
    "code3": "AUS",
    "tld": ".au",
    "region": "Oceania",
    "currencies": [
      "AUD"
    ],
    "languages": [
      "en"
    ]
  },
  "AW": {
    "name": "Aruba",
    "code": "AW",
    "code3": "ABW",
    "tld": ".aw",
    "region": "Americas",
    "currencies": [
      "AWG"
    ],
    "languages": [
      "es",
      "nl"
    ]
  },
  "AX": {
    "name": "Åland Islands",
    "code": "AX",
    "code3": "ALA",
    "tld": ".ax",
    "region": "Europe",
    "currencies": [
      "EUR"
    ],
    "languages": [
      "sv"
    ]
  },
  "AZ": {
    "name": "Azerbaijan",
    "code": "AZ",
    "code3": "AZE",
    "tld": ".az",
    "region": "Asia",
    "currencies": [
      "AZN"
    ],
    "languages": [
      "az",
      "ru"
    ]
  },
  "BA": {
    "name": "Bosnia and Herzegovina",
    "code": "BA",
    "code3": "BIH",
    "tld": ".ba",
    "region": "Europe",
    "currencies": [
      "BAM"
    ],
    "languages": [
      "hr",
      "sr",
      "bs"
    ]
  },
  "BB": {
    "name": "Barbados",
    "code": "BB",
    "code3": "BRB",
    "tld": ".bb",
    "region": "Americas",
    "currencies": [
      "BBD"
    ],
    "languages": [
      "en"
    ]
  },
  "BD": {
    "name": "Bangladesh",
    "code": "BD",
    "code3": "BGD",
    "tld": ".bd",
    "region": "Asia",
    "currencies": [
      "BDT"
    ],
    "languages": [
      "bn"
    ]
  },
  "BE": {
    "name": "Belgium",
    "code": "BE",
    "code3": "BEL",
    "tld": ".be",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "EUR"
    ],
    "languages": [
      "de",
      "fr",
      "nl"
    ]
  },
  "BF": {
    "name": "Burkina Faso",
    "code": "BF",
    "code3": "BFA",
    "tld": ".bf",
    "region": "Africa",
    "currencies": [
      "XOF"
    ],
    "languages": [
      "fr"
    ]
  },
  "BG": {
    "name": "Bulgaria",
    "code": "BG",
    "code3": "BGR",
    "tld": ".bg",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "BGN"
    ],
    "languages": [
      "bg"
    ]
  },
  "BH": {
    "name": "Bahrain",
    "code": "BH",
    "code3": "BHR",
    "tld": ".bh",
    "region": "Asia",
    "currencies": [
      "BHD"
    ],
    "languages": [
      "ar"
    ]
  },
  "BI": {
    "name": "Burundi",
    "code": "BI",
    "code3": "BDI",
    "tld": ".bi",
    "region": "Africa",
    "currencies": [
      "BIF"
    ],
    "languages": [
      "fr",
      "rn"
    ]
  },
  "BJ": {
    "name": "Benin",
    "code": "BJ",
    "code3": "BEN",
    "tld": ".bj",
    "region": "Africa",
    "currencies": [
      "XOF"
    ],
    "languages": [
      "fr"
    ]
  },
  "BL": {
    "name": "Saint Barthélemy",
    "code": "BL",
    "code3": "BLM",
    "tld": ".bl",
    "region": "Americas",
    "currencies": [
      "EUR"
    ],
    "languages": [
      "fr"
    ]
  },
  "BM": {
    "name": "Bermuda",
    "code": "BM",
    "code3": "BMU",
    "tld": ".bm",
    "region": "Americas",
    "currencies": [
      "BMD"
    ],
    "languages": [
      "en"
    ]
  },
  "BN": {
    "name": "Brunei",
    "code": "BN",
    "code3": "BRN",
    "tld": ".bn",
    "region": "Asia",
    "currencies": [
      "BND"
    ],
    "languages": [
      "ms"
    ]
  },
  "BO": {
    "name": "Bolivia",
    "code": "BO",
    "code3": "BOL",
    "tld": ".bo",
    "region": "Americas",
    "currencies": [
      "BOB",
      "BOV"
    ],
    "languages": [
      "ay",
      "gn",
      "qu",
      "es"
    ]
  },
  "BR": {
    "name": "Brazil",
    "code": "BR",
    "code3": "BRA",
    "tld": ".br",
    "region": "Americas",
    "currencies": [
      "BRL"
    ],
    "languages": [
      "pt"
    ]
  },
  "BS": {
    "name": "Bahamas",
    "code": "BS",
    "code3": "BHS",
    "tld": ".bs",
    "region": "Americas",
    "currencies": [
      "BSD"
    ],
    "languages": [
      "en"
    ]
  },
  "BT": {
    "name": "Bhutan",
    "code": "BT",
    "code3": "BTN",
    "tld": ".bt",
    "region": "Asia",
    "currencies": [
      "BTN",
      "INR"
    ],
    "languages": [
      "dz"
    ]
  },
  "BV": {
    "name": "Bouvet Island",
    "code": "BV",
    "code3": "BVT",
    "tld": ".bv",
    "currencies": [
      "NOK"
    ],
    "languages": [
      "no"
    ]
  },
  "BW": {
    "name": "Botswana",
    "code": "BW",
    "code3": "BWA",
    "tld": ".bw",
    "region": "Africa",
    "currencies": [
      "BWP"
    ],
    "languages": [
      "en",
      "tn"
    ]
  },
  "BY": {
    "name": "Belarus",
    "code": "BY",
    "code3": "BLR",
    "tld": ".by",
    "region": "Europe",
    "currencies": [
      "BYR"
    ],
    "languages": [
      "be",
      "ru"
    ]
  },
  "BZ": {
    "name": "Belize",
    "code": "BZ",
    "code3": "BLZ",
    "tld": ".bz",
    "region": "Americas",
    "currencies": [
      "BZD"
    ],
    "languages": [
      "en",
      "es"
    ]
  },
  "CA": {
    "name": "Canada",
    "code": "CA",
    "code3": "CAN",
    "tld": ".ca",
    "region": "Americas",
    "currencies": [
      "CAD"
    ],
    "languages": [
      "fr",
      "en"
    ]
  },
  "CC": {
    "name": "Cocos (Keeling) Islands",
    "code": "CC",
    "code3": "CCK",
    "tld": ".cc",
    "region": "Oceania",
    "currencies": [
      "AUD"
    ],
    "languages": [
      "en"
    ]
  },
  "CD": {
    "name": "DR Congo",
    "code": "CD",
    "code3": "COD",
    "tld": ".cd",
    "region": "Africa",
    "currencies": [
      "CDF"
    ],
    "languages": [
      "sw",
      "fr",
      "kg",
      "ln"
    ]
  },
  "CF": {
    "name": "Central African Republic",
    "code": "CF",
    "code3": "CAF",
    "tld": ".cf",
    "region": "Africa",
    "currencies": [
      "XAF"
    ],
    "languages": [
      "fr",
      "sg"
    ]
  },
  "CG": {
    "name": "Republic of the Congo",
    "code": "CG",
    "code3": "COG",
    "tld": ".cg",
    "region": "Africa",
    "currencies": [
      "XAF"
    ],
    "languages": [
      "fr",
      "kg",
      "ln"
    ]
  },
  "CH": {
    "name": "Switzerland",
    "code": "CH",
    "code3": "CHE",
    "tld": ".ch",
    "region": "Europe",
    "currencies": [
      "CHE",
      "CHF",
      "CHW"
    ],
    "languages": [
      "fr",
      "it",
      "rm"
    ]
  },
  "CI": {
    "name": "Ivory Coast",
    "code": "CI",
    "code3": "CIV",
    "tld": ".ci",
    "region": "Africa",
    "currencies": [
      "XOF"
    ],
    "languages": [
      "fr"
    ]
  },
  "CK": {
    "name": "Cook Islands",
    "code": "CK",
    "code3": "COK",
    "tld": ".ck",
    "region": "Oceania",
    "currencies": [
      "NZD"
    ],
    "languages": [
      "en"
    ]
  },
  "CL": {
    "name": "Chile",
    "code": "CL",
    "code3": "CHL",
    "tld": ".cl",
    "region": "Americas",
    "currencies": [
      "CLF",
      "CLP"
    ],
    "languages": [
      "es"
    ]
  },
  "CM": {
    "name": "Cameroon",
    "code": "CM",
    "code3": "CMR",
    "tld": ".cm",
    "region": "Africa",
    "currencies": [
      "XAF"
    ],
    "languages": [
      "fr",
      "en"
    ]
  },
  "CN": {
    "name": "China",
    "code": "CN",
    "code3": "CHN",
    "tld": ".cn,.中国,.中國,.公司,.网络",
    "region": "Asia",
    "currencies": [
      "CNY"
    ],
    "languages": [
      "cn"
    ]
  },
  "CO": {
    "name": "Colombia",
    "code": "CO",
    "code3": "COL",
    "tld": ".co",
    "region": "Americas",
    "currencies": [
      "COP"
    ],
    "languages": [
      "es"
    ]
  },
  "CR": {
    "name": "Costa Rica",
    "code": "CR",
    "code3": "CRI",
    "tld": ".cr",
    "region": "Americas",
    "currencies": [
      "CRC"
    ],
    "languages": [
      "es"
    ]
  },
  "CU": {
    "name": "Cuba",
    "code": "CU",
    "code3": "CUB",
    "tld": ".cu",
    "region": "Americas",
    "currencies": [
      "CUC",
      "CUP"
    ],
    "languages": [
      "es"
    ]
  },
  "CV": {
    "name": "Cape Verde",
    "code": "CV",
    "code3": "CPV",
    "tld": ".cv",
    "region": "Africa",
    "currencies": [
      "CVE"
    ],
    "languages": [
      "pt"
    ]
  },
  "CW": {
    "name": "Curaçao",
    "code": "CW",
    "code3": "CUW",
    "tld": ".cw",
    "region": "Americas",
    "currencies": [
      "ANG"
    ],
    "languages": [
      "en",
      "nl",
      "es"
    ]
  },
  "CX": {
    "name": "Christmas Island",
    "code": "CX",
    "code3": "CXR",
    "tld": ".cx",
    "region": "Oceania",
    "currencies": [
      "AUD"
    ],
    "languages": [
      "en"
    ]
  },
  "CY": {
    "name": "Cyprus",
    "code": "CY",
    "code3": "CYP",
    "tld": ".cy",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "EUR"
    ],
    "languages": [
      "gr",
      "tr"
    ]
  },
  "CZ": {
    "name": "Czech Republic",
    "code": "CZ",
    "code3": "CZE",
    "tld": ".cz",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "CZK"
    ],
    "languages": [
      "cz",
      "sk"
    ]
  },
  "DE": {
    "name": "Germany",
    "code": "DE",
    "code3": "DEU",
    "tld": ".de",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "EUR"
    ],
    "languages": [
      "de"
    ]
  },
  "DJ": {
    "name": "Djibouti",
    "code": "DJ",
    "code3": "DJI",
    "tld": ".dj",
    "region": "Africa",
    "currencies": [
      "DJF"
    ],
    "languages": [
      "fr",
      "ar"
    ]
  },
  "DK": {
    "name": "Denmark",
    "code": "DK",
    "code3": "DNK",
    "tld": ".dk",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "DKK"
    ],
    "languages": [
      "da"
    ]
  },
  "DM": {
    "name": "Dominica",
    "code": "DM",
    "code3": "DMA",
    "tld": ".dm",
    "region": "Americas",
    "currencies": [
      "XCD"
    ],
    "languages": [
      "en"
    ]
  },
  "DO": {
    "name": "Dominican Republic",
    "code": "DO",
    "code3": "DOM",
    "tld": ".do",
    "region": "Americas",
    "currencies": [
      "DOP"
    ],
    "languages": [
      "es"
    ]
  },
  "DZ": {
    "name": "Algeria",
    "code": "DZ",
    "code3": "DZA",
    "tld": ".dz,الجزائر.",
    "region": "Africa",
    "currencies": [
      "DZD"
    ],
    "languages": [
      "ar"
    ]
  },
  "EC": {
    "name": "Ecuador",
    "code": "EC",
    "code3": "ECU",
    "tld": ".ec",
    "region": "Americas",
    "currencies": [
      "USD"
    ],
    "languages": [
      "es"
    ]
  },
  "EE": {
    "name": "Estonia",
    "code": "EE",
    "code3": "EST",
    "tld": ".ee",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "EUR"
    ],
    "languages": [
      "et"
    ]
  },
  "EG": {
    "name": "Egypt",
    "code": "EG",
    "code3": "EGY",
    "tld": ".eg,.مصر",
    "region": "Africa",
    "currencies": [
      "EGP"
    ],
    "languages": [
      "ar"
    ]
  },
  "EH": {
    "name": "Western Sahara",
    "code": "EH",
    "code3": "ESH",
    "tld": ".eh",
    "region": "Africa",
    "currencies": [
      "MAD",
      "DZD",
      "MRO"
    ],
    "languages": [
      "es"
    ]
  },
  "ER": {
    "name": "Eritrea",
    "code": "ER",
    "code3": "ERI",
    "tld": ".er",
    "region": "Africa",
    "currencies": [
      "ERN"
    ],
    "languages": [
      "ar",
      "en",
      "ti"
    ]
  },
  "ES": {
    "name": "Spain",
    "code": "ES",
    "code3": "ESP",
    "tld": ".es",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "EUR"
    ],
    "languages": [
      "ca",
      "gl",
      "oc",
      "es"
    ]
  },
  "ET": {
    "name": "Ethiopia",
    "code": "ET",
    "code3": "ETH",
    "tld": ".et",
    "region": "Africa",
    "currencies": [
      "ETB"
    ],
    "languages": [
      "am"
    ]
  },
  "FI": {
    "name": "Finland",
    "code": "FI",
    "code3": "FIN",
    "tld": ".fi",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "EUR"
    ],
    "languages": [
      "fi",
      "sv"
    ]
  },
  "FJ": {
    "name": "Fiji",
    "code": "FJ",
    "code3": "FJI",
    "tld": ".fj",
    "region": "Oceania",
    "currencies": [
      "FJD"
    ],
    "languages": [
      "en",
      "fj"
    ]
  },
  "FK": {
    "name": "Falkland Islands",
    "code": "FK",
    "code3": "FLK",
    "tld": ".fk",
    "region": "Americas",
    "currencies": [
      "FKP"
    ],
    "languages": [
      "en"
    ]
  },
  "FM": {
    "name": "Micronesia",
    "code": "FM",
    "code3": "FSM",
    "tld": ".fm",
    "region": "Oceania",
    "currencies": [
      "USD"
    ],
    "languages": [
      "en"
    ]
  },
  "FO": {
    "name": "Faroe Islands",
    "code": "FO",
    "code3": "FRO",
    "tld": ".fo",
    "region": "Europe",
    "currencies": [
      "DKK"
    ],
    "languages": [
      "da",
      "fo"
    ]
  },
  "FR": {
    "name": "France",
    "code": "FR",
    "code3": "FRA",
    "tld": ".fr",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "EUR"
    ],
    "languages": [
      "fr"
    ]
  },
  "GA": {
    "name": "Gabon",
    "code": "GA",
    "code3": "GAB",
    "tld": ".ga",
    "region": "Africa",
    "currencies": [
      "XAF"
    ],
    "languages": [
      "fr"
    ]
  },
  "GB": {
    "name": "United Kingdom",
    "code": "GB",
    "code3": "GBR",
    "tld": ".uk",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "GBP"
    ],
    "languages": [
      "en"
    ]
  },
  "GD": {
    "name": "Grenada",
    "code": "GD",
    "code3": "GRD",
    "tld": ".gd",
    "region": "Americas",
    "currencies": [
      "XCD"
    ],
    "languages": [
      "en"
    ]
  },
  "GE": {
    "name": "Georgia",
    "code": "GE",
    "code3": "GEO",
    "tld": ".ge",
    "region": "Asia",
    "currencies": [
      "GEL"
    ],
    "languages": [
      "ka"
    ]
  },
  "GF": {
    "name": "French Guiana",
    "code": "GF",
    "code3": "GUF",
    "tld": ".gf",
    "region": "Americas",
    "currencies": [
      "EUR"
    ],
    "languages": [
      "fr"
    ]
  },
  "GG": {
    "name": "Guernsey",
    "code": "GG",
    "code3": "GGY",
    "tld": ".gg",
    "region": "Europe",
    "currencies": [
      "GBP"
    ],
    "languages": [
      "en",
      "fr"
    ]
  },
  "GH": {
    "name": "Ghana",
    "code": "GH",
    "code3": "GHA",
    "tld": ".gh",
    "region": "Africa",
    "currencies": [
      "GHS"
    ],
    "languages": [
      "en"
    ]
  },
  "GI": {
    "name": "Gibraltar",
    "code": "GI",
    "code3": "GIB",
    "tld": ".gi",
    "region": "Europe",
    "currencies": [
      "GIP"
    ],
    "languages": [
      "en"
    ]
  },
  "GL": {
    "name": "Greenland",
    "code": "GL",
    "code3": "GRL",
    "tld": ".gl",
    "region": "Americas",
    "currencies": [
      "DKK"
    ],
    "languages": [
      "kl"
    ]
  },
  "GM": {
    "name": "Gambia",
    "code": "GM",
    "code3": "GMB",
    "tld": ".gm",
    "region": "Africa",
    "currencies": [
      "GMD"
    ],
    "languages": [
      "en"
    ]
  },
  "GN": {
    "name": "Guinea",
    "code": "GN",
    "code3": "GIN",
    "tld": ".gn",
    "region": "Africa",
    "currencies": [
      "GNF"
    ],
    "languages": [
      "fr"
    ]
  },
  "GP": {
    "name": "Guadeloupe",
    "code": "GP",
    "code3": "GLP",
    "tld": ".gp",
    "region": "Americas",
    "currencies": [
      "EUR"
    ],
    "languages": [
      "fr"
    ]
  },
  "GQ": {
    "name": "Equatorial Guinea",
    "code": "GQ",
    "code3": "GNQ",
    "tld": ".gq",
    "region": "Africa",
    "currencies": [
      "XAF"
    ],
    "languages": [
      "fr",
      "pt",
      "es"
    ]
  },
  "GR": {
    "name": "Greece",
    "code": "GR",
    "code3": "GRC",
    "tld": ".gr",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "EUR"
    ],
    "languages": [
      "gr"
    ]
  },
  "GS": {
    "name": "South Georgia",
    "code": "GS",
    "code3": "SGS",
    "tld": ".gs",
    "region": "Americas",
    "currencies": [
      "GBP"
    ],
    "languages": [
      "en"
    ]
  },
  "GT": {
    "name": "Guatemala",
    "code": "GT",
    "code3": "GTM",
    "tld": ".gt",
    "region": "Americas",
    "currencies": [
      "GTQ"
    ],
    "languages": [
      "es"
    ]
  },
  "GU": {
    "name": "Guam",
    "code": "GU",
    "code3": "GUM",
    "tld": ".gu",
    "region": "Oceania",
    "currencies": [
      "USD"
    ],
    "languages": [
      "ch",
      "en",
      "es"
    ]
  },
  "GW": {
    "name": "Guinea-Bissau",
    "code": "GW",
    "code3": "GNB",
    "tld": ".gw",
    "region": "Africa",
    "currencies": [
      "XOF"
    ],
    "languages": [
      "pt"
    ]
  },
  "GY": {
    "name": "Guyana",
    "code": "GY",
    "code3": "GUY",
    "tld": ".gy",
    "region": "Americas",
    "currencies": [
      "GYD"
    ],
    "languages": [
      "en"
    ]
  },
  "HK": {
    "name": "Hong Kong",
    "code": "HK",
    "code3": "HKG",
    "tld": ".hk,.香港",
    "region": "Asia",
    "currencies": [
      "HKD"
    ],
    "languages": [
      "en"
    ]
  },
  "HM": {
    "name": "Heard Island and McDonald Islands",
    "code": "HM",
    "code3": "HMD",
    "tld": ".hm,.aq",
    "currencies": [
      "AUD"
    ],
    "languages": [
      "en"
    ]
  },
  "HN": {
    "name": "Honduras",
    "code": "HN",
    "code3": "HND",
    "tld": ".hn",
    "region": "Americas",
    "currencies": [
      "HNL"
    ],
    "languages": [
      "es"
    ]
  },
  "HR": {
    "name": "Croatia",
    "code": "HR",
    "code3": "HRV",
    "tld": ".hr",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "HRK"
    ],
    "languages": [
      "hr"
    ]
  },
  "HT": {
    "name": "Haiti",
    "code": "HT",
    "code3": "HTI",
    "tld": ".ht",
    "region": "Americas",
    "currencies": [
      "HTG",
      "USD"
    ],
    "languages": [
      "fr",
      "ht"
    ]
  },
  "HU": {
    "name": "Hungary",
    "code": "HU",
    "code3": "HUN",
    "tld": ".hu",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "HUF"
    ],
    "languages": [
      "hu"
    ]
  },
  "ID": {
    "name": "Indonesia",
    "code": "ID",
    "code3": "IDN",
    "tld": ".id",
    "region": "Asia",
    "currencies": [
      "IDR"
    ],
    "languages": [
      "id"
    ]
  },
  "IE": {
    "name": "Ireland",
    "code": "IE",
    "code3": "IRL",
    "tld": ".ie",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "EUR"
    ],
    "languages": [
      "en",
      "ga"
    ]
  },
  "IL": {
    "name": "Israel",
    "code": "IL",
    "code3": "ISR",
    "tld": ".il",
    "region": "Asia",
    "currencies": [
      "ILS"
    ],
    "languages": [
      "he",
      "ar"
    ]
  },
  "IM": {
    "name": "Isle of Man",
    "code": "IM",
    "code3": "IMN",
    "tld": ".im",
    "region": "Europe",
    "currencies": [
      "GBP"
    ],
    "languages": [
      "en",
      "gv"
    ]
  },
  "IN": {
    "name": "India",
    "code": "IN",
    "code3": "IND",
    "tld": ".in",
    "region": "Asia",
    "currencies": [
      "INR"
    ],
    "languages": [
      "en",
      "hi",
      "ta"
    ]
  },
  "IO": {
    "name": "British Indian Ocean Territory",
    "code": "IO",
    "code3": "IOT",
    "tld": ".io",
    "region": "Africa",
    "currencies": [
      "USD"
    ],
    "languages": [
      "en"
    ]
  },
  "IQ": {
    "name": "Iraq",
    "code": "IQ",
    "code3": "IRQ",
    "tld": ".iq",
    "region": "Asia",
    "currencies": [
      "IQD"
    ],
    "languages": [
      "ar"
    ]
  },
  "IR": {
    "name": "Iran",
    "code": "IR",
    "code3": "IRN",
    "tld": ".ir,ایران.",
    "region": "Asia",
    "currencies": [
      "IRR"
    ],
    "languages": [
      "fa"
    ]
  },
  "IS": {
    "name": "Iceland",
    "code": "IS",
    "code3": "ISL",
    "tld": ".is",
    "region": "Europe",
    "currencies": [
      "ISK"
    ],
    "languages": [
      "is"
    ]
  },
  "IT": {
    "name": "Italy",
    "code": "IT",
    "code3": "ITA",
    "tld": ".it",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "EUR"
    ],
    "languages": [
      "it",
      "sc",
      "de"
    ]
  },
  "JE": {
    "name": "Jersey",
    "code": "JE",
    "code3": "JEY",
    "tld": ".je",
    "region": "Europe",
    "currencies": [
      "GBP"
    ],
    "languages": [
      "en",
      "fr"
    ]
  },
  "JM": {
    "name": "Jamaica",
    "code": "JM",
    "code3": "JAM",
    "tld": ".jm",
    "region": "Americas",
    "currencies": [
      "JMD"
    ],
    "languages": [
      "en"
    ]
  },
  "JO": {
    "name": "Jordan",
    "code": "JO",
    "code3": "JOR",
    "tld": ".jo,الاردن.",
    "region": "Asia",
    "currencies": [
      "JOD"
    ],
    "languages": [
      "ar"
    ]
  },
  "JP": {
    "name": "Japan",
    "code": "JP",
    "code3": "JPN",
    "tld": ".jp,.みんな",
    "region": "Asia",
    "currencies": [
      "JPY"
    ],
    "languages": [
      "ja"
    ]
  },
  "KE": {
    "name": "Kenya",
    "code": "KE",
    "code3": "KEN",
    "tld": ".ke",
    "region": "Africa",
    "currencies": [
      "KES"
    ],
    "languages": [
      "en",
      "sw"
    ]
  },
  "KG": {
    "name": "Kyrgyzstan",
    "code": "KG",
    "code3": "KGZ",
    "tld": ".kg",
    "region": "Asia",
    "currencies": [
      "KGS"
    ],
    "languages": [
      "ru",
      "ky"
    ]
  },
  "KH": {
    "name": "Cambodia",
    "code": "KH",
    "code3": "KHM",
    "tld": ".kh",
    "region": "Asia",
    "currencies": [
      "KHR"
    ],
    "languages": [
      "km"
    ]
  },
  "KI": {
    "name": "Kiribati",
    "code": "KI",
    "code3": "KIR",
    "tld": ".ki",
    "region": "Oceania",
    "currencies": [
      "AUD"
    ],
    "languages": [
      "en"
    ]
  },
  "KM": {
    "name": "Comoros",
    "code": "KM",
    "code3": "COM",
    "tld": ".km",
    "region": "Africa",
    "currencies": [
      "KMF"
    ],
    "languages": [
      "ar",
      "fr"
    ]
  },
  "KN": {
    "name": "Saint Kitts and Nevis",
    "code": "KN",
    "code3": "KNA",
    "tld": ".kn",
    "region": "Americas",
    "currencies": [
      "XCD"
    ],
    "languages": [
      "en"
    ]
  },
  "KP": {
    "name": "North Korea",
    "code": "KP",
    "code3": "PRK",
    "tld": ".kp",
    "region": "Asia",
    "currencies": [
      "KPW"
    ],
    "languages": [
      "ko"
    ]
  },
  "KR": {
    "name": "South Korea",
    "code": "KR",
    "code3": "KOR",
    "tld": ".kr,.한국",
    "region": "Asia",
    "currencies": [
      "KRW"
    ],
    "languages": [
      "ko"
    ]
  },
  "KW": {
    "name": "Kuwait",
    "code": "KW",
    "code3": "KWT",
    "tld": ".kw",
    "region": "Asia",
    "currencies": [
      "KWD"
    ],
    "languages": [
      "ar"
    ]
  },
  "KY": {
    "name": "Cayman Islands",
    "code": "KY",
    "code3": "CYM",
    "tld": ".ky",
    "region": "Americas",
    "currencies": [
      "KYD"
    ],
    "languages": [
      "en"
    ]
  },
  "KZ": {
    "name": "Kazakhstan",
    "code": "KZ",
    "code3": "KAZ",
    "tld": ".kz,.қаз",
    "region": "Asia",
    "currencies": [
      "KZT"
    ],
    "languages": [
      "kk",
      "ru"
    ]
  },
  "LA": {
    "name": "Laos",
    "code": "LA",
    "code3": "LAO",
    "tld": ".la",
    "region": "Asia",
    "currencies": [
      "LAK"
    ],
    "languages": [
      "lo"
    ]
  },
  "LB": {
    "name": "Lebanon",
    "code": "LB",
    "code3": "LBN",
    "tld": ".lb",
    "region": "Asia",
    "currencies": [
      "LBP"
    ],
    "languages": [
      "ar",
      "fr"
    ]
  },
  "LC": {
    "name": "Saint Lucia",
    "code": "LC",
    "code3": "LCA",
    "tld": ".lc",
    "region": "Americas",
    "currencies": [
      "XCD"
    ],
    "languages": [
      "en"
    ]
  },
  "LI": {
    "name": "Liechtenstein",
    "code": "LI",
    "code3": "LIE",
    "tld": ".li",
    "region": "Europe",
    "currencies": [
      "CHF"
    ],
    "languages": [
      "de"
    ]
  },
  "LK": {
    "name": "Sri Lanka",
    "code": "LK",
    "code3": "LKA",
    "tld": ".lk,.இலங்கை,.ලංකා",
    "region": "Asia",
    "currencies": [
      "LKR"
    ],
    "languages": [
      "si",
      "ta"
    ]
  },
  "LR": {
    "name": "Liberia",
    "code": "LR",
    "code3": "LBR",
    "tld": ".lr",
    "region": "Africa",
    "currencies": [
      "LRD"
    ],
    "languages": [
      "en"
    ]
  },
  "LS": {
    "name": "Lesotho",
    "code": "LS",
    "code3": "LSO",
    "tld": ".ls",
    "region": "Africa",
    "currencies": [
      "LSL",
      "ZAR"
    ],
    "languages": [
      "en",
      "st"
    ]
  },
  "LT": {
    "name": "Lithuania",
    "code": "LT",
    "code3": "LTU",
    "tld": ".lt",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "EUR"
    ],
    "languages": [
      "lt"
    ]
  },
  "LU": {
    "name": "Luxembourg",
    "code": "LU",
    "code3": "LUX",
    "tld": ".lu",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "EUR"
    ],
    "languages": [
      "de",
      "fr",
      "lb"
    ]
  },
  "LV": {
    "name": "Latvia",
    "code": "LV",
    "code3": "LVA",
    "tld": ".lv",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "EUR"
    ],
    "languages": [
      "lv"
    ]
  },
  "LY": {
    "name": "Libya",
    "code": "LY",
    "code3": "LBY",
    "tld": ".ly",
    "region": "Africa",
    "currencies": [
      "LYD"
    ],
    "languages": [
      "ar"
    ]
  },
  "MA": {
    "name": "Morocco",
    "code": "MA",
    "code3": "MAR",
    "tld": ".ma,المغرب.",
    "region": "Africa",
    "currencies": [
      "MAD"
    ],
    "languages": [
      "ar"
    ]
  },
  "MC": {
    "name": "Monaco",
    "code": "MC",
    "code3": "MCO",
    "tld": ".mc",
    "region": "Europe",
    "currencies": [
      "EUR"
    ],
    "languages": [
      "fr"
    ]
  },
  "MD": {
    "name": "Moldova",
    "code": "MD",
    "code3": "MDA",
    "tld": ".md",
    "region": "Europe",
    "currencies": [
      "MDL"
    ],
    "languages": [
      "ro"
    ]
  },
  "ME": {
    "name": "Montenegro",
    "code": "ME",
    "code3": "MNE",
    "tld": ".me",
    "region": "Europe",
    "currencies": [
      "EUR"
    ],
    "languages": [
      "sr"
    ]
  },
  "MF": {
    "name": "Saint Martin",
    "code": "MF",
    "code3": "MAF",
    "tld": ".fr,.gp",
    "region": "Americas",
    "currencies": [
      "EUR"
    ],
    "languages": [
      "fr"
    ]
  },
  "MG": {
    "name": "Madagascar",
    "code": "MG",
    "code3": "MDG",
    "tld": ".mg",
    "region": "Africa",
    "currencies": [
      "MGA"
    ],
    "languages": [
      "mg",
      "fr"
    ]
  },
  "MH": {
    "name": "Marshall Islands",
    "code": "MH",
    "code3": "MHL",
    "tld": ".mh",
    "region": "Oceania",
    "currencies": [
      "USD"
    ],
    "languages": [
      "mh",
      "en"
    ]
  },
  "MK": {
    "name": "Macedonia",
    "code": "MK",
    "code3": "MKD",
    "tld": ".mk",
    "region": "Europe",
    "currencies": [
      "MKD"
    ],
    "languages": [
      "mk"
    ]
  },
  "ML": {
    "name": "Mali",
    "code": "ML",
    "code3": "MLI",
    "tld": ".ml",
    "region": "Africa",
    "currencies": [
      "XOF"
    ],
    "languages": [
      "fr"
    ]
  },
  "MM": {
    "name": "Myanmar",
    "code": "MM",
    "code3": "MMR",
    "tld": ".mm",
    "region": "Asia",
    "currencies": [
      "MMK"
    ],
    "languages": [
      "my"
    ]
  },
  "MN": {
    "name": "Mongolia",
    "code": "MN",
    "code3": "MNG",
    "tld": ".mn",
    "region": "Asia",
    "currencies": [
      "MNT"
    ],
    "languages": [
      "mn"
    ]
  },
  "MO": {
    "name": "Macau",
    "code": "MO",
    "code3": "MAC",
    "tld": ".mo",
    "region": "Asia",
    "currencies": [
      "MOP"
    ],
    "languages": [
      "pt"
    ]
  },
  "MP": {
    "name": "Northern Mariana Islands",
    "code": "MP",
    "code3": "MNP",
    "tld": ".mp",
    "region": "Oceania",
    "currencies": [
      "USD"
    ],
    "languages": [
      "ch",
      "en"
    ]
  },
  "MQ": {
    "name": "Martinique",
    "code": "MQ",
    "code3": "MTQ",
    "tld": ".mq",
    "region": "Americas",
    "currencies": [
      "EUR"
    ],
    "languages": [
      "fr"
    ]
  },
  "MR": {
    "name": "Mauritania",
    "code": "MR",
    "code3": "MRT",
    "tld": ".mr",
    "region": "Africa",
    "currencies": [
      "MRO"
    ],
    "languages": [
      "ar"
    ]
  },
  "MS": {
    "name": "Montserrat",
    "code": "MS",
    "code3": "MSR",
    "tld": ".ms",
    "region": "Americas",
    "currencies": [
      "XCD"
    ],
    "languages": [
      "en"
    ]
  },
  "MT": {
    "name": "Malta",
    "code": "MT",
    "code3": "MLT",
    "tld": ".mt",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "EUR"
    ],
    "languages": [
      "mt",
      "en"
    ]
  },
  "MU": {
    "name": "Mauritius",
    "code": "MU",
    "code3": "MUS",
    "tld": ".mu",
    "region": "Africa",
    "currencies": [
      "MUR"
    ],
    "languages": [
      "en",
      "fr"
    ]
  },
  "MV": {
    "name": "Maldives",
    "code": "MV",
    "code3": "MDV",
    "tld": ".mv",
    "region": "Asia",
    "currencies": [
      "MVR"
    ],
    "languages": [
      "dv"
    ]
  },
  "MW": {
    "name": "Malawi",
    "code": "MW",
    "code3": "MWI",
    "tld": ".mw",
    "region": "Africa",
    "currencies": [
      "MWK"
    ],
    "languages": [
      "en",
      "ny"
    ]
  },
  "MX": {
    "name": "Mexico",
    "code": "MX",
    "code3": "MEX",
    "tld": ".mx",
    "region": "Americas",
    "currencies": [
      "MXN"
    ],
    "languages": [
      "es"
    ]
  },
  "MY": {
    "name": "Malaysia",
    "code": "MY",
    "code3": "MYS",
    "tld": ".my",
    "region": "Asia",
    "currencies": [
      "MYR"
    ],
    "languages": [
      "en",
      "ms"
    ]
  },
  "MZ": {
    "name": "Mozambique",
    "code": "MZ",
    "code3": "MOZ",
    "tld": ".mz",
    "region": "Africa",
    "currencies": [
      "MZN"
    ],
    "languages": [
      "pt"
    ]
  },
  "NA": {
    "name": "Namibia",
    "code": "NA",
    "code3": "NAM",
    "tld": ".na",
    "region": "Africa",
    "currencies": [
      "NAD",
      "ZAR"
    ],
    "languages": [
      "en",
      "de",
      "hz",
      "ng",
      "tn",
      "af"
    ]
  },
  "NC": {
    "name": "New Caledonia",
    "code": "NC",
    "code3": "NCL",
    "tld": ".nc",
    "region": "Oceania",
    "currencies": [
      "XPF"
    ],
    "languages": [
      "fr"
    ]
  },
  "NE": {
    "name": "Niger",
    "code": "NE",
    "code3": "NER",
    "tld": ".ne",
    "region": "Africa",
    "currencies": [
      "XOF"
    ],
    "languages": [
      "fr"
    ]
  },
  "NF": {
    "name": "Norfolk Island",
    "code": "NF",
    "code3": "NFK",
    "tld": ".nf",
    "region": "Oceania",
    "currencies": [
      "AUD"
    ],
    "languages": [
      "en"
    ]
  },
  "NG": {
    "name": "Nigeria",
    "code": "NG",
    "code3": "NGA",
    "tld": ".ng",
    "region": "Africa",
    "currencies": [
      "NGN"
    ],
    "languages": [
      "en"
    ]
  },
  "NI": {
    "name": "Nicaragua",
    "code": "NI",
    "code3": "NIC",
    "tld": ".ni",
    "region": "Americas",
    "currencies": [
      "NIO"
    ],
    "languages": [
      "es"
    ]
  },
  "NL": {
    "name": "Netherlands",
    "code": "NL",
    "code3": "NLD",
    "tld": ".nl",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "EUR"
    ],
    "languages": [
      "nl"
    ]
  },
  "NO": {
    "name": "Norway",
    "code": "NO",
    "code3": "NOR",
    "tld": ".no",
    "region": "Europe",
    "currencies": [
      "NOK"
    ],
    "languages": [
      "nn",
      "nb"
    ]
  },
  "NP": {
    "name": "Nepal",
    "code": "NP",
    "code3": "NPL",
    "tld": ".np",
    "region": "Asia",
    "currencies": [
      "NPR"
    ],
    "languages": [
      "ne"
    ]
  },
  "NR": {
    "name": "Nauru",
    "code": "NR",
    "code3": "NRU",
    "tld": ".nr",
    "region": "Oceania",
    "currencies": [
      "AUD"
    ],
    "languages": [
      "en",
      "na"
    ]
  },
  "NU": {
    "name": "Niue",
    "code": "NU",
    "code3": "NIU",
    "tld": ".nu",
    "region": "Oceania",
    "currencies": [
      "NZD"
    ],
    "languages": [
      "en"
    ]
  },
  "NZ": {
    "name": "New Zealand",
    "code": "NZ",
    "code3": "NZL",
    "tld": ".nz",
    "region": "Oceania",
    "currencies": [
      "NZD"
    ],
    "languages": [
      "en"
    ]
  },
  "OM": {
    "name": "Oman",
    "code": "OM",
    "code3": "OMN",
    "tld": ".om",
    "region": "Asia",
    "currencies": [
      "OMR"
    ],
    "languages": [
      "ar"
    ]
  },
  "PA": {
    "name": "Panama",
    "code": "PA",
    "code3": "PAN",
    "tld": ".pa",
    "region": "Americas",
    "currencies": [
      "PAB",
      "USD"
    ],
    "languages": [
      "es"
    ]
  },
  "PE": {
    "name": "Peru",
    "code": "PE",
    "code3": "PER",
    "tld": ".pe",
    "region": "Americas",
    "currencies": [
      "PEN"
    ],
    "languages": [
      "qu",
      "es",
      "ay"
    ]
  },
  "PF": {
    "name": "French Polynesia",
    "code": "PF",
    "code3": "PYF",
    "tld": ".pf",
    "region": "Oceania",
    "currencies": [
      "XPF"
    ],
    "languages": [
      "fr"
    ]
  },
  "PG": {
    "name": "Papua New Guinea",
    "code": "PG",
    "code3": "PNG",
    "tld": ".pg",
    "region": "Oceania",
    "currencies": [
      "PGK"
    ],
    "languages": [
      "ho",
      "en"
    ]
  },
  "PH": {
    "name": "Philippines",
    "code": "PH",
    "code3": "PHL",
    "tld": ".ph",
    "region": "Asia",
    "currencies": [
      "PHP"
    ],
    "languages": [
      "en"
    ]
  },
  "PK": {
    "name": "Pakistan",
    "code": "PK",
    "code3": "PAK",
    "tld": ".pk",
    "region": "Asia",
    "currencies": [
      "PKR"
    ],
    "languages": [
      "en",
      "ur"
    ]
  },
  "PL": {
    "name": "Poland",
    "code": "PL",
    "code3": "POL",
    "tld": ".pl",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "PLN"
    ],
    "languages": [
      "pl"
    ]
  },
  "PM": {
    "name": "Saint Pierre and Miquelon",
    "code": "PM",
    "code3": "SPM",
    "tld": ".pm",
    "region": "Americas",
    "currencies": [
      "EUR"
    ],
    "languages": [
      "fr"
    ]
  },
  "PN": {
    "name": "Pitcairn Islands",
    "code": "PN",
    "code3": "PCN",
    "tld": ".pn",
    "region": "Oceania",
    "currencies": [
      "NZD"
    ],
    "languages": [
      "en"
    ]
  },
  "PR": {
    "name": "Puerto Rico",
    "code": "PR",
    "code3": "PRI",
    "tld": ".pr",
    "region": "Americas",
    "currencies": [
      "USD"
    ],
    "languages": [
      "en",
      "es"
    ]
  },
  "PS": {
    "name": "Palestine",
    "code": "PS",
    "code3": "PSE",
    "tld": ".ps,فلسطين.",
    "region": "Asia",
    "currencies": [
      "ILS"
    ],
    "languages": [
      "ar"
    ]
  },
  "PT": {
    "name": "Portugal",
    "code": "PT",
    "code3": "PRT",
    "tld": ".pt",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "EUR"
    ],
    "languages": [
      "pt"
    ]
  },
  "PW": {
    "name": "Palau",
    "code": "PW",
    "code3": "PLW",
    "tld": ".pw",
    "region": "Oceania",
    "currencies": [
      "USD"
    ],
    "languages": [
      "en"
    ]
  },
  "PY": {
    "name": "Paraguay",
    "code": "PY",
    "code3": "PRY",
    "tld": ".py",
    "region": "Americas",
    "currencies": [
      "PYG"
    ],
    "languages": [
      "gn",
      "es"
    ]
  },
  "QA": {
    "name": "Qatar",
    "code": "QA",
    "code3": "QAT",
    "tld": ".qa,قطر.",
    "region": "Asia",
    "currencies": [
      "QAR"
    ],
    "languages": [
      "ar"
    ]
  },
  "RE": {
    "name": "Réunion",
    "code": "RE",
    "code3": "REU",
    "tld": ".re",
    "region": "Africa",
    "currencies": [
      "EUR"
    ],
    "languages": [
      "fr"
    ]
  },
  "RO": {
    "name": "Romania",
    "code": "RO",
    "code3": "ROU",
    "tld": ".ro",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "RON"
    ],
    "languages": [
      "ro"
    ]
  },
  "RS": {
    "name": "Serbia",
    "code": "RS",
    "code3": "SRB",
    "tld": ".rs,.срб",
    "region": "Europe",
    "currencies": [
      "RSD"
    ],
    "languages": [
      "sr"
    ]
  },
  "RU": {
    "name": "Russia",
    "code": "RU",
    "code3": "RUS",
    "tld": ".ru,.su,.рф",
    "region": "Europe",
    "currencies": [
      "RUB"
    ],
    "languages": [
      "ru"
    ]
  },
  "RW": {
    "name": "Rwanda",
    "code": "RW",
    "code3": "RWA",
    "tld": ".rw",
    "region": "Africa",
    "currencies": [
      "RWF"
    ],
    "languages": [
      "rw",
      "en",
      "fr"
    ]
  },
  "SA": {
    "name": "Saudi Arabia",
    "code": "SA",
    "code3": "SAU",
    "tld": ".sa,.السعودية",
    "region": "Asia",
    "currencies": [
      "SAR"
    ],
    "languages": [
      "ar"
    ]
  },
  "SB": {
    "name": "Solomon Islands",
    "code": "SB",
    "code3": "SLB",
    "tld": ".sb",
    "region": "Oceania",
    "currencies": [
      "SBD"
    ],
    "languages": [
      "en"
    ]
  },
  "SC": {
    "name": "Seychelles",
    "code": "SC",
    "code3": "SYC",
    "tld": ".sc",
    "region": "Africa",
    "currencies": [
      "SCR"
    ],
    "languages": [
      "en",
      "fr"
    ]
  },
  "SD": {
    "name": "Sudan",
    "code": "SD",
    "code3": "SDN",
    "tld": ".sd",
    "region": "Africa",
    "currencies": [
      "SDG"
    ],
    "languages": [
      "ar",
      "en"
    ]
  },
  "SE": {
    "name": "Sweden",
    "code": "SE",
    "code3": "SWE",
    "tld": ".se",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "SEK"
    ],
    "languages": [
      "sv"
    ]
  },
  "SG": {
    "name": "Singapore",
    "code": "SG",
    "code3": "SGP",
    "tld": ".sg,.新加坡,.சிங்கப்பூர்",
    "region": "Asia",
    "currencies": [
      "SGD"
    ],
    "languages": [
      "cn",
      "en",
      "ms",
      "ta"
    ]
  },
  "SI": {
    "name": "Slovenia",
    "code": "SI",
    "code3": "SVN",
    "tld": ".si",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "EUR"
    ],
    "languages": [
      "sl"
    ]
  },
  "SJ": {
    "name": "Svalbard and Jan Mayen",
    "code": "SJ",
    "code3": "SJM",
    "tld": ".sj",
    "region": "Europe",
    "currencies": [
      "NOK"
    ],
    "languages": [
      "no"
    ]
  },
  "SK": {
    "name": "Slovakia",
    "code": "SK",
    "code3": "SVK",
    "tld": ".sk",
    "region": "Europe",
    "eu": true,
    "currencies": [
      "EUR"
    ],
    "languages": [
      "sk"
    ]
  },
  "SL": {
    "name": "Sierra Leone",
    "code": "SL",
    "code3": "SLE",
    "tld": ".sl",
    "region": "Africa",
    "currencies": [
      "SLL"
    ],
    "languages": [
      "en"
    ]
  },
  "SM": {
    "name": "San Marino",
    "code": "SM",
    "code3": "SMR",
    "tld": ".sm",
    "region": "Europe",
    "currencies": [
      "EUR"
    ],
    "languages": [
      "it"
    ]
  },
  "SN": {
    "name": "Senegal",
    "code": "SN",
    "code3": "SEN",
    "tld": ".sn",
    "region": "Africa",
    "currencies": [
      "XOF"
    ],
    "languages": [
      "fr"
    ]
  },
  "SO": {
    "name": "Somalia",
    "code": "SO",
    "code3": "SOM",
    "tld": ".so",
    "region": "Africa",
    "currencies": [
      "SOS"
    ],
    "languages": [
      "ar",
      "so"
    ]
  },
  "SR": {
    "name": "Suriname",
    "code": "SR",
    "code3": "SUR",
    "tld": ".sr",
    "region": "Americas",
    "currencies": [
      "SRD"
    ],
    "languages": [
      "nl"
    ]
  },
  "SS": {
    "name": "South Sudan",
    "code": "SS",
    "code3": "SSD",
    "tld": ".ss",
    "region": "Africa",
    "currencies": [
      "SSP"
    ],
    "languages": [
      "en"
    ]
  },
  "ST": {
    "name": "São Tomé and Príncipe",
    "code": "ST",
    "code3": "STP",
    "tld": ".st",
    "region": "Africa",
    "currencies": [
      "STD"
    ],
    "languages": [
      "pt"
    ]
  },
  "SV": {
    "name": "El Salvador",
    "code": "SV",
    "code3": "SLV",
    "tld": ".sv",
    "region": "Americas",
    "currencies": [
      "SVC",
      "USD"
    ],
    "languages": [
      "es"
    ]
  },
  "SX": {
    "name": "Sint Maarten",
    "code": "SX",
    "code3": "SXM",
    "tld": ".sx",
    "region": "Americas",
    "currencies": [
      "ANG"
    ],
    "languages": [
      "en",
      "nl"
    ]
  },
  "SY": {
    "name": "Syria",
    "code": "SY",
    "code3": "SYR",
    "tld": ".sy,سوريا.",
    "region": "Asia",
    "currencies": [
      "SYP"
    ],
    "languages": [
      "ar"
    ]
  },
  "SZ": {
    "name": "Swaziland",
    "code": "SZ",
    "code3": "SWZ",
    "tld": ".sz",
    "region": "Africa",
    "currencies": [
      "SZL"
    ],
    "languages": [
      "en",
      "ss"
    ]
  },
  "TC": {
    "name": "Turks and Caicos Islands",
    "code": "TC",
    "code3": "TCA",
    "tld": ".tc",
    "region": "Americas",
    "currencies": [
      "USD"
    ],
    "languages": [
      "en"
    ]
  },
  "TD": {
    "name": "Chad",
    "code": "TD",
    "code3": "TCD",
    "tld": ".td",
    "region": "Africa",
    "currencies": [
      "XAF"
    ],
    "languages": [
      "ar",
      "fr"
    ]
  },
  "TF": {
    "name": "French Southern and Antarctic Lands",
    "code": "TF",
    "code3": "ATF",
    "tld": ".tf",
    "currencies": [
      "EUR"
    ],
    "languages": [
      "fr"
    ]
  },
  "TG": {
    "name": "Togo",
    "code": "TG",
    "code3": "TGO",
    "tld": ".tg",
    "region": "Africa",
    "currencies": [
      "XOF"
    ],
    "languages": [
      "fr"
    ]
  },
  "TH": {
    "name": "Thailand",
    "code": "TH",
    "code3": "THA",
    "tld": ".th,.ไทย",
    "region": "Asia",
    "currencies": [
      "THB"
    ],
    "languages": [
      "th"
    ]
  },
  "TJ": {
    "name": "Tajikistan",
    "code": "TJ",
    "code3": "TJK",
    "tld": ".tj",
    "region": "Asia",
    "currencies": [
      "TJS"
    ],
    "languages": [
      "tg",
      "ru"
    ]
  },
  "TK": {
    "name": "Tokelau",
    "code": "TK",
    "code3": "TKL",
    "tld": ".tk",
    "region": "Oceania",
    "currencies": [
      "NZD"
    ],
    "languages": [
      "en",
      "sm"
    ]
  },
  "TL": {
    "name": "Timor-Leste",
    "code": "TL",
    "code3": "TLS",
    "tld": ".tl",
    "region": "Asia",
    "currencies": [
      "USD"
    ],
    "languages": [
      "pt"
    ]
  },
  "TM": {
    "name": "Turkmenistan",
    "code": "TM",
    "code3": "TKM",
    "tld": ".tm",
    "region": "Asia",
    "currencies": [
      "TMT"
    ],
    "languages": [
      "ru",
      "tk"
    ]
  },
  "TN": {
    "name": "Tunisia",
    "code": "TN",
    "code3": "TUN",
    "tld": ".tn",
    "region": "Africa",
    "currencies": [
      "TND"
    ],
    "languages": [
      "ar"
    ]
  },
  "TO": {
    "name": "Tonga",
    "code": "TO",
    "code3": "TON",
    "tld": ".to",
    "region": "Oceania",
    "currencies": [
      "TOP"
    ],
    "languages": [
      "en",
      "to"
    ]
  },
  "TR": {
    "name": "Turkey",
    "code": "TR",
    "code3": "TUR",
    "tld": ".tr",
    "region": "Asia",
    "currencies": [
      "TRY"
    ],
    "languages": [
      "tr"
    ]
  },
  "TT": {
    "name": "Trinidad and Tobago",
    "code": "TT",
    "code3": "TTO",
    "tld": ".tt",
    "region": "Americas",
    "currencies": [
      "TTD"
    ],
    "languages": [
      "en"
    ]
  },
  "TV": {
    "name": "Tuvalu",
    "code": "TV",
    "code3": "TUV",
    "tld": ".tv",
    "region": "Oceania",
    "currencies": [
      "AUD"
    ],
    "languages": [
      "en"
    ]
  },
  "TW": {
    "name": "Taiwan",
    "code": "TW",
    "code3": "TWN",
    "tld": ".tw,.台湾,.台灣",
    "region": "Asia",
    "currencies": [
      "TWD"
    ],
    "languages": [
      "cn"
    ]
  },
  "TZ": {
    "name": "Tanzania",
    "code": "TZ",
    "code3": "TZA",
    "tld": ".tz",
    "region": "Africa",
    "currencies": [
      "TZS"
    ],
    "languages": [
      "en",
      "sw"
    ]
  },
  "UA": {
    "name": "Ukraine",
    "code": "UA",
    "code3": "UKR",
    "tld": ".ua,.укр",
    "region": "Europe",
    "currencies": [
      "UAH"
    ],
    "languages": [
      "ru",
      "uk"
    ]
  },
  "UG": {
    "name": "Uganda",
    "code": "UG",
    "code3": "UGA",
    "tld": ".ug",
    "region": "Africa",
    "currencies": [
      "UGX"
    ],
    "languages": [
      "sw",
      "en"
    ]
  },
  "UM": {
    "name": "United States Minor Outlying Islands",
    "code": "UM",
    "code3": "UMI",
    "tld": ".us",
    "region": "Americas",
    "currencies": [
      "USD"
    ],
    "languages": [
      "en"
    ]
  },
  "US": {
    "name": "United States",
    "code": "US",
    "code3": "USA",
    "tld": ".us",
    "region": "Americas",
    "currencies": [
      "USD",
      "USN",
      "USS"
    ],
    "languages": [
      "en"
    ]
  },
  "UY": {
    "name": "Uruguay",
    "code": "UY",
    "code3": "URY",
    "tld": ".uy",
    "region": "Americas",
    "currencies": [
      "UYI",
      "UYU"
    ],
    "languages": [
      "es"
    ]
  },
  "UZ": {
    "name": "Uzbekistan",
    "code": "UZ",
    "code3": "UZB",
    "tld": ".uz",
    "region": "Asia",
    "currencies": [
      "UZS"
    ],
    "languages": [
      "ru",
      "uz"
    ]
  },
  "VA": {
    "name": "Vatican City",
    "code": "VA",
    "code3": "VAT",
    "tld": ".va",
    "region": "Europe",
    "currencies": [
      "EUR"
    ],
    "languages": [
      "it",
      "la"
    ]
  },
  "VC": {
    "name": "Saint Vincent and the Grenadines",
    "code": "VC",
    "code3": "VCT",
    "tld": ".vc",
    "region": "Americas",
    "currencies": [
      "XCD"
    ],
    "languages": [
      "en"
    ]
  },
  "VE": {
    "name": "Venezuela",
    "code": "VE",
    "code3": "VEN",
    "tld": ".ve",
    "region": "Americas",
    "currencies": [
      "VEF"
    ],
    "languages": [
      "es"
    ]
  },
  "VG": {
    "name": "British Virgin Islands",
    "code": "VG",
    "code3": "VGB",
    "tld": ".vg",
    "region": "Americas",
    "currencies": [
      "USD"
    ],
    "languages": [
      "en"
    ]
  },
  "VI": {
    "name": "United States Virgin Islands",
    "code": "VI",
    "code3": "VIR",
    "tld": ".vi",
    "region": "Americas",
    "currencies": [
      "USD"
    ],
    "languages": [
      "en"
    ]
  },
  "VN": {
    "name": "Vietnam",
    "code": "VN",
    "code3": "VNM",
    "tld": ".vn",
    "region": "Asia",
    "currencies": [
      "VND"
    ],
    "languages": [
      "vi"
    ]
  },
  "VU": {
    "name": "Vanuatu",
    "code": "VU",
    "code3": "VUT",
    "tld": ".vu",
    "region": "Oceania",
    "currencies": [
      "VUV"
    ],
    "languages": [
      "bi",
      "en",
      "fr"
    ]
  },
  "WF": {
    "name": "Wallis and Futuna",
    "code": "WF",
    "code3": "WLF",
    "tld": ".wf",
    "region": "Oceania",
    "currencies": [
      "XPF"
    ],
    "languages": [
      "fr"
    ]
  },
  "WS": {
    "name": "Samoa",
    "code": "WS",
    "code3": "WSM",
    "tld": ".ws",
    "region": "Oceania",
    "currencies": [
      "WST"
    ],
    "languages": [
      "sm",
      "en"
    ]
  },
  "YE": {
    "name": "Yemen",
    "code": "YE",
    "code3": "YEM",
    "tld": ".ye",
    "region": "Asia",
    "currencies": [
      "YER"
    ],
    "languages": [
      "ar"
    ]
  },
  "YT": {
    "name": "Mayotte",
    "code": "YT",
    "code3": "MYT",
    "tld": ".yt",
    "region": "Africa",
    "currencies": [
      "EUR"
    ],
    "languages": [
      "fr"
    ]
  },
  "ZA": {
    "name": "South Africa",
    "code": "ZA",
    "code3": "ZAF",
    "tld": ".za",
    "region": "Africa",
    "currencies": [
      "ZAR"
    ],
    "languages": [
      "nr",
      "ve",
      "zu",
      "en",
      "st",
      "ss",
      "tn",
      "ts",
      "xh",
      "af"
    ]
  },
  "ZM": {
    "name": "Zambia",
    "code": "ZM",
    "code3": "ZMB",
    "tld": ".zm",
    "region": "Africa",
    "currencies": [
      "ZMW"
    ],
    "languages": [
      "en"
    ]
  },
  "ZW": {
    "name": "Zimbabwe",
    "code": "ZW",
    "code3": "ZWE",
    "tld": ".zw",
    "region": "Africa",
    "currencies": [
      "ZWL"
    ],
    "languages": [
      "en",
      "nd",
      "ny",
      "tn",
      "ve",
      "st",
      "ts",
      "sn",
      "xh"
    ]
  }
}
Authors object {{ authors }} has content
[
  {
    "id": "1890647c-3925-8752-a26c-03021b60c2a8",
    "image": null,
    "name": "Debugger"
  }
]
Vendors object {{ vendors }} has content
[
  {
    "handle": "coffee-shop",
    "id": "189064b3-9977-844d-ad63-a105aef466d9",
    "image": "",
    "name": "Coffee shop",
    "notes": "",
    "url": ""
  },
  {
    "handle": "debugging",
    "id": "189064aa-7e2a-84eb-a36d-c434a6603757",
    "image": "",
    "name": "Debugging",
    "notes": "",
    "url": ""
  }
]
Customer object {{ customer }} is empty
null
Shop object {{ shop }} has Shop ID
{
  "id": "189063c4-bf77-8b18-8bf7-8037402f5acf",
  "currency": "EUR",
  "currencies": {
    "EUR": "€{{value}} EUR"
  },
  "baseCurrency": "EUR",
  "settings": {
    "b2b": false,
    "b2c": true,
    "registration": false,
    "requireAccount": false,
    "sandbox": true
  },
  "country": "SE"
}
Cart object {{ cart }} does not have shopId null

Theme settings

Image jpg

"cupcake-2565913 copy.jpg"

Image png

"Screenshot 2025-02-24 at 08.03.53.png"

Image svg

"icon.svg"

Image gif

"Create-site.gif"

Image mp4

"Choose-page-editor.gif"
        
{
  "testImage": "cupcake-2565913 copy.jpg",
  "testgif": "Create-site.gif",
  "testpng": "Screenshot 2025-02-24 at 08.03.53.png",
  "testsvg": "icon.svg",
  "testvideo": "Choose-page-editor.gif"
}
null
{
  "articleCount": 2,
  "articleTags": null,
  "articles": {},
  "createdAt": "2026-02-02T09:27:37.011Z",
  "entity": "blog",
  "format": "MD",
  "handle": "birds",
  "html": "",
  "id": "189063dd-9bf3-8dcc-91b5-13ead51fed62",
  "image": {
    "src": "",
    "alt": "",
    "alts": null
  },
  "lang": "en",
  "meta": {
    "h1": "Birds",
    "title": "Birds",
    "description": "",
    "keywords": "",
    "data": null
  },
  "policy": 0,
  "publishAt": "0001-01-01T00:00:00Z",
  "published": true,
  "tags": null,
  "template": "",
  "text": "",
  "title": "Birds"
}
[]