Skip to main content
POST
/
api
/
personal
/
trips
/
bulk
Bulk Create Trips Endpoint
curl --request POST \
  --url https://api.example.com/api/personal/trips/bulk \
  --header 'Content-Type: application/json' \
  --data '
{
  "trips": [
    {
      "destination": "<string>",
      "best_time": "<string>",
      "estimated_budget_usd": 123,
      "notes": "<string>",
      "region": "<string>",
      "status": "someday"
    }
  ]
}
'
{
  "total": 123,
  "trips": [
    {
      "created_at": "<string>",
      "destination": "<string>",
      "id": "<string>",
      "status": "someday",
      "updated_at": "<string>",
      "best_time": "<string>",
      "estimated_budget_usd": 123,
      "notes": "<string>",
      "region": "<string>"
    }
  ]
}

Body

application/json
trips
CreateTripRequest · object[]
required

Response

Successful Response

total
integer
required
trips
TripResponse · object[]
required