GetCountryList¶
This reference method returns a list of all country codes and full country names.
Request¶
GET https://api.uberflip.com/?Version=0.1&Method=GetCountryList&APIKey=xxxxxxx&Signature=xxxxxx&ResponseType=XML
URL Parameters | Description |
---|---|
Version | The version of the API to call (0.1 ). |
Method | The method being called (GetCountryList ). |
APIKey | Your account’s API key. |
Signature | Your account’s API signature. |
ResponseType | (optional) The response format (XML or JSON ). Defaults to JSON . |
Examples¶
Sample response:
<Response>
<Country>
<Code>US</Code>
<Name>United States</Name>
</Country>
<Country>
<Code>CA</Code>
<Name>Canada</Name>
</Country>
<Country>
...
</Country>
<Country>
<Code>ZW</Code>
<Name>Zimbabwe</Name>
</Country>
</Response>