attractions

travel

Tourist attraction or point of interest with name, location, type, rating, and description. Used for travel guides, tourism platforms, and destination discovery applications.

Request Builder

https://api.mockly.codes/attractions?page=1&limit=10&count=10

Configure your request and click Send Request to see the response here.

Endpoints

GET/attractions

Get a collection of attractions

Alternative: /travel/attractions
GET/attractions/:id

Get a single attraction by ID

Alternative: /travel/attractions/:id
GET/attractions/meta

Get resource metadata and schema

Alternative: /travel/attractions/meta

How to Use Search

The search feature allows you to filter results by searching for text across all or specific fields. Choose between ?q= or ?search= parameter names.

1. Basic Search

Search across all text fields:

Basic Search
GET https://api.mockly.codes/attractions?q=laptop

2. Search Specific Fields

Field-Specific Search
GET https://api.mockly.codes/attractions?q=laptop&search_fields=name,description

Pro Tips

  • Search is case-insensitive and performs partial matching
  • Without search_fields, all text fields are searched
  • Combine with pagination to handle large result sets efficiently

Code Examples

curl "https://api.mockly.codes/attractions?page=1&limit=10&count=10"

Examples reflect your current request builder settings.

Schema Properties

idinteger

Unique identifier for the attraction

Gen:random_int
namestring

Name of the tourist attraction or point of interest

Gen:sentence
citystring

City where the attraction is located

Gen:city
countrystring

Country where the attraction is located

Gen:country
typestring

Type of attraction (e.g., Museum, Park, Monument, Beach, Landmark)

Gen:word
ratingnumber

Average visitor rating, typically on a scale of 1-5

Gen:float
descriptionstring

Detailed description of the attraction and what visitors can expect

Gen:paragraph

Query Parameters

countinteger

Number of items to return (default: 10, max: 100)

seedinteger

Seed for reproducible data generation

nocacheboolean

Bypass cache and generate fresh data on every request