Random Full Address Generator
API Documentation
GET
https://randomdatatool.com/api/address/fulladdressQuery Parameters
| Parameter | Type | Description |
|---|---|---|
| count | int | Number of entries to return. Default: 10. Max: 1000. |
| to_upper_case | bool | Transform the result string to uppercase. |
Response JSON
{
"status": "success",
"data": [
],
"count": 2
}
"status": "success",
"data": [
"236 Bode Via, Lake Kaseyville, Solomon Islands",
"98965 Bailey Street, Jabariton, Colombia"
"count": 2
}
Implementation
curl -X GET "https://randomdatatool.com/api/address/fulladdress?to_upper_case=true&count=10"