trekrz

Find unique multi-day treks and

experiences around the world


Get Started

spring, ha giang province, vietnam-5087073.jpg

Graphic Design

Focus on how you can help and benefit your user. Use simple words so that you don’t confuse people.

hike, to stroll, hiking-3434071.jpg

Web Design

Focus on how you can help and benefit your user. Use simple words so that you don’t confuse people.

adventure, girls, green-2178313.jpg

Content Creation

Focus on how you can help and benefit your user. Use simple words so that you don’t confuse people.

“Original and with an innate understanding of their customer’s needs, the team at Love Nature are always a pleasure to work with.”

Jane Miller

ABOUT US

Tell website visitors who you are and why they should choose your business.

Because when a visitor first lands on your website, you’re a stranger to them. They have to get to know you in order to want to read your blog posts, subscribe to your email newsletter, or buy what you’re selling.


Find Out More

machu picchu, peru, inka-43384.jpg

QUESTIONS?

Whether you’re curious about features, a free trial, or even press, we’re here to answer any questions.


Let’s Talk Now


import requests

# Set the API endpoint and your API key
endpoint = "https://www.viatorapi.com/service/search/v3/activity"
api_key = "YOUR_API_KEY_HERE"

# Set the search parameters
params = {
    "destId": "169",  # Destination ID for the location you want to search
    "sortOrder": "PRICE",  # Sort results by price
    "duration": "MULTI_DAY",  # Filter for multi-day treks
    "pageSize": "20",  # Set the number of results per page
    "pageNumber": "1",  # Set the page number
}

# Send the request and get the response
response = requests.get(endpoint, params=params, headers={"Api-Key": api_key})

# Get the data from the response
data = response.json()

# Print the results
for result in data["results"]:
    print(result["title"])  # Print the title of the trek