POST
/
api
/
dataset
/
{slug}
/
entries
curl --request POST \
  --url https://app.langwatch.ai/api/dataset/{slug}/entries \
  --header 'Content-Type: application/json' \
  --header 'X-Auth-Token: <api-key>' \
  --data '{
  "entries": [
    {
      "input": "hi",
      "output": "Hello, how can I help you today?"
    }
  ]
}'

Authorizations

X-Auth-Token
string
header
required

Path Parameters

slug
string
required

Body

application/json
entries
object[]
required
Example:
[
  {
    "input": "hi",
    "output": "Hello, how can I help you today?"
  }
]