POST
/
synthetic
/
v1
/
generate
curl --request POST \
  --url https://api.aceaicompany.com/synthetic/v1/generate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "options": "<string>"
}'
{
  "gen_dataset_id": "<string>",
  "status": "<string>"
}

Purpose: Requests the creation of synthetic data based on an uploaded dataset.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Information needed for generating synthetic data (omitted in the current example).

Request payload for generating synthetic data. (Currently no specific fields are enforced.)

options
string

Optional extra parameters for generation.

Response

200
application/json
Synthetic data generation request successfully created.
gen_dataset_id
string
required

Unique identifier assigned to the newly generated synthetic dataset.

status
string
required

Current status of the generation request (e.g., 'in-progress', 'complete').