Tipmoto Scraper avatar

Tipmoto Scraper

Pricing

Pay per usage

Go to Apify Store
Tipmoto Scraper

Tipmoto Scraper

An Actor that scrapes motorcycle listings from tipmoto.com. Supports filtering by search term or seller, and returns structured data including price, images, technical parameters, and seller details.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Kamil Vaclavek

Kamil Vaclavek

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

An Apify Actor that scrapes motorcycle listings from tipmoto.com.

Input

FieldTypeDefaultDescription
querystringSearch term to filter listings
sellerUrlstringRestrict results to a specific seller's page
listingsLimitnumber100Max listings to scrape (hard cap: 5000)

If neither query nor sellerUrl is provided, the Actor fetches all listings site-wide.

Output

Each item in the dataset represents one listing:

{
"id": 12345,
"title": "Honda CB 500 F",
"priceAmount": 120000,
"priceCurrency": "CZK",
"priceNegotiable": false,
"url": "https://www.tipmoto.com/...",
"imageUrls": ["https://..."],
"parameters": { "Rok výroby": "2020", "Stav": "Použitý" },
"availability": "Dostupné",
"manufacturer": "Honda",
"model": "CB 500 F",
"classification": "Naked",
"bodyHtml": "...",
"bodyText": "...",
"sellerName": "Motobazar 123",
"sellerUrl": "https://www.tipmoto.com/prodejce/...",
"sellerCity": "Praha",
"sellerRegion": "Praha"
}

Running locally

Install dependencies

$npm install

Define input

Input is read from storage/key_value_stores/default/INPUT.json. Create this file before running:

{
"query": "honda",
"listingsLimit": 50
}

Run the actor

$apify run