FakeMyJSON
  • FakeMyJSON - Documentation
  • Faker Formatters
    • Base
    • Lorem Ipsum Text
    • Person
    • Address
    • Phone Number
    • Company
    • Real Text
    • Date and Time
    • Internet
    • User Agent
    • Payment
    • Color
    • File
    • Image
    • Uuid
    • Barcode
    • Miscellaneous
  • Special Keys and Values
    • Special Keys
  • FakeMyJSON.io
  • Start generating random JSON!
Powered by GitBook
On this page
  • cityPrefix
  • secondaryAddress
  • state
  • stateAbbr
  • citySuffix
  • streetSuffix
  • buildingNumber
  • city
  • streetName
  • streetAddress
  • postcode
  • address
  • country
  • latitude(minLatitude, maxLatitude)
  • longitude(minLongitude, maxLongitude)

Was this helpful?

  1. Faker Formatters

Address

cityPrefix

Output Type: String

{
  "cityPrefix": "cityPrefix"
}
{
  "cityPrefix": "Lake"
}

secondaryAddress

Output Type: String

{
    "secondaryAddress": "secondaryAddress"
}
{
  "secondaryAddress": "Suite 517"
}

state

Output Type: String

{
    "state":"state"
}
{
    "state": "Ohio"
}

stateAbbr

Output Type: String

{
    "stateAbbr":"stateAbbr"
}
{
    "stateAbbr": "MD"
}

citySuffix

Output Type: String

{
    "citySuffix":"citySuffix"
}
{
    "citySuffix": "shire"
}

streetSuffix

Output Type: String

{
    "streetSuffix":"streetSuffix"
}
{
    "streetSuffix": "Circle"
}

buildingNumber

Output Type: String

{
    "buildingNumber": "buildingNumber"
}
{
     "buildingNumber": "82007"
}

city

Output Type: String

{
    "city": "city",
}
{
    "city": "Loistown"
}

streetName

Output Type: String

{
    "streetName": "streetName",
}
{
    "streetName": "Bill Plains"
}

streetAddress

Output Type: String

{
    "streetAddress": "streetAddress"
}
{
    "streetAddress": "633 Considine Manors Suite 870"
}

postcode

Output Type: String

{
    "postcode": "postcode"
}
{
    "postcode": "72319"
}

address

Output Type: String

{
    "address": "address"
}
{
     "address": "949 Willms Hills Suite 875\nArmaniside, IA 69668"
}

country

Output Type: String

{
    "country": "country"
}
{
    "country": "Sudan"
}

latitude(minLatitude, maxLatitude)

Output Type: Float

Argument

Type

Default

Valid Values

minLatitude

Integer

-90

eg. -90, 0, 90, 77

maxLatitude

Integer

90

eg. -90, 0, 90, 77

{
    "latitude": "latitude",
    "lat": "latitude(10, 12)",
}
{
    "latitude": 88.548043,
    "lat": 11.510042,
}

longitude(minLongitude, maxLongitude)

Output Type: Float

Argument

Type

Default

Valid Values

minLongitude

Integer

-90

eg. -90, 0, 90, 77

maxLongitude

Integer

90

eg. -90, 0, 90, 77

{
  "longitude": "longitude",
  "long": "longitude(10, 12)"
}
{
  "longitude": 139.930873,
  "long": 11.015141
}

PreviousPersonNextPhone Number

Last updated 4 years ago

Was this helpful?