Países
Descubra detalhes sobre países, como nome e códigos ISO, ideal para gestão de endereçamentos. Suporta consultas por ID ou código.
Obter Todos os Países
GET
https://api/v1.toconline.com/api/coutries
Exemplo de Response
{
"data": [
{
"type": "countries",
"id": "1",
"attributes": {
"default_name": "Portugal - Continente",
"iso_alpha_2": "PT",
"iso_alpha_3": "PRT",
"tax_country_region": "PT"
}
},
{
"type": "countries",
"id": "2",
"attributes": {
"default_name": "Portugal - Madeira",
"iso_alpha_2": "PT-MA",
"iso_alpha_3": "PRT",
"tax_country_region": "PT-MA"
}
},
(...)
]
}
}
Obter País por Código de País
Endpoint
https://api/v1.toconline.com/api/coutries?filter[iso_alpha_2]=<Código de País>
Endpooint
https://api/v1.toconline.com/api/coutries?filter[iso_alpha_2]=PT
{
"data": [
{
"type": "countries",
"id": "1",
"attributes": {
"default_name": "Portugal - Continente",
"iso_alpha_2": "PT",
"iso_alpha_3": "PRT",
"tax_country_region": "PT"
}
}
]
}
<Código de País> => "iso_alpha_2"
Obter Todos os Países OSS
GET
https://api/v1.toconline.com/api/coutries
Exemplo de Response
{
"data": [
{
"type": "countries",
"id": "1",
"attributes": {
"default_name": "Portugal - Continente",
"iso_alpha_2": "PT",
"iso_alpha_3": "PRT",
"tax_country_region": "PT"
}
},
{
"type": "countries",
"id": "2",
"attributes": {
"default_name": "Portugal - Madeira",
"iso_alpha_2": "PT-MA",
"iso_alpha_3": "PRT",
"tax_country_region": "PT-MA"
}
},
(...)
]
}
}
Last updated