Skip to Main Content

page_parts

Standard parameters

Most calls to the Binubuo API supports the 5 core standard parameters

  • rows
  • locale
  • tz
  • csv
  • tag

Rows

determine how many rows of data you want returned from the dataset. Example:


https://binubuo.com/api/data/custom/quick_fetch?cols=first_name,last_name,city&rows=10

Locale

parameter, decides what country locale the dataset should run as. It takes the 2 letter iso code of a country as a value. All generators in the dataset will then run with the locale set, as specified. So to run a list of computer users from denmark, you would run:


https://binubuo.com/api/data/custom/quick_fetch?cols=first_name,last_name,city?locale=DK

TZ

parameter, lets binubuo know what time zone dates and timestamps should be in. The format is (-/+)XX:YY, and the offset timezone is UTC. So if I wanted to generate timestamps in Singapore timezone:


https://binubuo.com/api/data/custom/quick_fetch?cols=first_name,last_name,city?tz=+08:00

CSV

parameter tells the API endpoint that you want the output to be in CSV format instead of the default JSON format. This makes it easier for users to quickly load the data into excel and maybe manipulate or test the data from there. Simply set the csv parameter to any value, and output will be created in csv format:


https://binubuo.com/api/data/custom/quick_fetch?cols=first_name,last_name,city?csv=1

Tag

parameter, is a way to ensure the same output every time you call with that tag. Even though datasets by default always will produce a random rows, there are times where you need a guarantee that the values is always the same for every call. Rows for functional tests and performance tests are examples of that. Example:


https://binubuo.com/api/data/custom/quick_fetch?cols=first_name,last_name,city?tag=PT_Data

All parameters can of course be combined for use together:


https://binubuo.com/api/data/custom/quick_fetch?cols=first_name,last_name,city?rows=200&locale=DK&tz=+08:00&tag=PT_Data&csv=1

Anchor Points

On this page

  • Rows
  • Locale
  • TZ
  • CSV
  • Tag