https://github.com/albertorsesc/countries
A list of all countries with: Country-Code, Native-Name, Phone-Code, Continent, Capital, Currency and Languages.
https://github.com/albertorsesc/countries
countries-api json-api
Last synced: 3 months ago
JSON representation
A list of all countries with: Country-Code, Native-Name, Phone-Code, Continent, Capital, Currency and Languages.
- Host: GitHub
- URL: https://github.com/albertorsesc/countries
- Owner: albertorsesc
- Created: 2018-10-01T18:24:22.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-01T18:36:35.000Z (over 7 years ago)
- Last Synced: 2025-07-26T20:12:23.202Z (6 months ago)
- Topics: countries-api, json-api
- Size: 9.77 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Countries of the World - JSON Format
#### A list of all countries with their information.
##### info:
- Country Code
- Native Name
- Phone Code
- Continent
- Capital
- Currency
- Languages
##### Format:
```
"data": {
"Andorra": {
"code": "AD",
"native": "Andorra",
"phone": "376",
"continent": "EU",
"capital": "Andorra la Vella",
"currency": "EUR",
"languages": [
"ca"
]
}
}
```
#### Contributions
Feel free to send a PR suggesting changes, updates, corrections or anything necessary to improve this repo and thank you.
#### Credits to [Annexare Repository!](https://github.com/annexare/Countries)
The only difference is that the ```key: value``` of annexare repository is ``` "AD": {data} ```, using the Country code as key, which didn't work for the use case I'm working on.