Skip to main content
GET
/
api
/
personal
/
trips
List Trips Endpoint
curl --request GET \
  --url https://api.example.com/api/personal/trips
{
  "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>"
    }
  ]
}

Query Parameters

status
string | null

Response

Successful Response

total
integer
required
trips
TripResponse · object[]
required