Sednor Logo
Sednor Logo
Data Generator

Data Generator

This service enables users to create custom datasets by defining specific data requirements. Users can specify various fields and assign data types to each field. Based on these inputs, the service generates a tailored dataset that adheres to the provided specifications. Additionally, it offers an API endpoint, allowing users to easily query and retrieve the generated data for their applications or projects.

Describe what kind of data you want to get
Fields
model
string
Model of a car

year
number
Year the car has been released

price
number
Current price
Settings
Preview
POST: https://cy1wdebkva.execute-api.us-west-2.amazonaws.com/data
Body:
        
{
  "description": "Cars",
  "fields": [
    {
      "name": "model",
      "type": "string",
      "description": "Model of a car"
    },
    {
      "name": "year",
      "type": "number",
      "description": "Year the car has been released"
    },
    {
      "name": "price",
      "type": "number",
      "description": "Current price"
    }
  ],
  "length": 5,
  "responseType": "JSON"
}
Built by
Sednor