Basic
Category / Slug Iteration
Pagination
Page size must match what the site returns per page — if the response has fewer items, scraping stops.
Schema Mapping
Field Map (unified key → raw path)
Syntax reference
JSON / API
field | direct field name |
parent.child | nested dot-notation |
items.0.name | array index access |
path1,path2 | fallback — first non-null wins |
path|(\d+) | regex — first capture group or full match |
path==value | compare → boolean (case-insensitive) |
path!=value | negative compare → boolean |
HTML / HTML-in-JSON
div.title | text of CSS-matched element |
a.link@href | attribute of matched element |
@data-id | attribute on the card root |
selector|regex | extract then apply regex |
selector==value | compare text → boolean |
selector!=value | negative compare → boolean |
Test & Detect
Notes
No notes yet