Country Code
This API provides the Country code and region details.
GET
{{Base_url}}/rest/V1/directory/countries
This Magento REST API endpoint retrieves country and region details available in the store. It provides country codes, names, and a list of states/regions within each country.
Response
Explanation of Each Attribute
Country-Level Attributes
id
Value:
"IN"
Explanation: Represents the ISO 2-letter country code for India.
two_letter_abbreviation
Value:
"IN"
Explanation: The official 2-letter country abbreviation (same as
id
in most cases).
three_letter_abbreviation
Value:
"IND"
Explanation: The official 3-letter country abbreviation for India (as per ISO 3166-1).
full_name_locale
Value:
"India"
Explanation: The country name as displayed in the store’s locale-specific language (e.g., localized for different languages).
full_name_english
Value:
"India"
Explanation: The English name of the country.
Region-Level Attributes (Inside available_regions
)
available_regions
)Each object inside "available_regions"
represents a state/region within the country.
id
Example Value:
"533"
Explanation: The unique region ID in the Magento system for each state or union territory.
code
Example Value:
"AP"
Explanation: The short region code (state abbreviation), commonly used in shipping/billing addresses.
name
Example Value:
"Andhra Pradesh"
Explanation: The full name of the state/region as recognized in Magento.
How This API is Used
Populate Country & State Dropdowns
Used in frontend checkout and address forms to dynamically list available countries and their states.
Set Country/Region Restrictions
Helps store owners define allowed shipping/billing regions for orders.
Validate Addresses
Ensures customers select a valid country/region during checkout.
Last updated