GET /globalisation/cultures

Requests the list of culture information.

Note: This call is not rate-limited.

Parameters

callback

(optional)

Only available for JSON format. If supplied, the response will use JSONP format with a callback of the given name.

Request Content Type

N/A

Response

Returns the CultureInfo resource in the requested format.

Response Content Type

application/json, application/javascript (JSONP), application/xml or text/csv as requested

Give It A Try...

Enter appropriate parameter values then click on the link which appears to try the API call...

Note: You must have JavaScript support enabled in your browser to use this feature.

callback

(optional)

Response format

 

Request Examples

GET /globalisation/cultures?auth=e722fa0c702f42b68e2fdb771a80caed
GET /globalisation/cultures.json?auth=e722fa0c702f42b68e2fdb771a80caed
GET /globalisation/cultures.xml?auth=e722fa0c702f42b68e2fdb771a80caed
GET /globalisation/cultures.csv?auth=e722fa0c702f42b68e2fdb771a80caed

Response Examples

JSON body:

[
  {
    "CultureName": "en-ZA",
    "EnglishName": "English (South Africa)",
    "NativeName": "English (South Africa)"
  }
]

XML body:

<?xml version="1.0"?>
<ArrayOfCultureInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <CultureInfo CultureName="en-ZA">
    <EnglishName>English (South Africa)</EnglishName>
    <NativeName>English (South Africa)</NativeName>
  </CultureInfo>
</ArrayOfCultureInfo>

CSV body:

CultureName,EnglishName,NativeName
en-ZA,English (South Africa),English (South Africa)