Travel guide article with destination information, tips, author, rating, and content. Used for travel blogs, destination guides, and travel information platforms.
https://api.mockly.codes/travelguides?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/travelguidesGet a collection of travelguides
/travel/travelguides/travelguides/:idGet a single travelguide by ID
/travel/travelguides/:id/travelguides/metaGet resource metadata and schema
/travel/travelguides/metaThe search feature allows you to filter results by searching for text across all or specific fields. Choose between ?q= or ?search= parameter names.
Search across all text fields:
GET https://api.mockly.codes/travelguides?q=laptopGET https://api.mockly.codes/travelguides?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 travelguides
fetch('https://api.mockly.codes/travelguides?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/travelguides?count=10'
)
data = response.json()curl "https://api.mockly.codes/travelguides?count=10"fetch('https://api.mockly.codes/travelguides?nocache=true')idintegerUnique identifier for the travel guide
random_intdestinationstringDestination city or location the guide covers
citytitlestringTitle of the travel guide
sentencecontentstringFull travel guide content with information, recommendations, and advice
paragraphtipsarrayArray of travel tips and recommendations
tagsauthorstringFull name of the travel guide author
nameratingnumberAverage reader rating, typically on a scale of 1-5
floatcountintegerNumber of items to return (default: 10, max: 100)
seedintegerSeed for reproducible data generation
nocachebooleanBypass cache and generate fresh data on every request