← Back to Skills Marketplace
dataify-server

Dataify Booking Hotellist

by dataify-server · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
41
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install dataify-booking-hotellist
Description
Collect Booking hotel information through Dataify Scraper API. Use when the user asks to gather, scrape, crawl, fetch, extract, or collect Booking hotel info...
README (SKILL.md)

Dataify Booking Hotel Info

Use this skill to create Booking hotel information collection tasks through Dataify's builder endpoint.

Required Workflow

  1. Use the booking_hotellist_by-url spider when the user wants to collect Booking hotel information from one or more Booking URLs.
  2. Check the local Python runtime before calling scripts. Prefer python; use python3 if that is the available Python command. Require Python 3 or newer. Do not use version-specific commands such as py -3.10.
  3. Tell the user which parameters are required and what the defaults are. Ask whether any values should be changed.
  4. Ask whether the user wants to collect multiple parameter sets. If yes, collect multiple spider_parameters objects for the same spider ID. If the user already supplied multiple Booking URLs, treat that as a multiple-set request.
  5. Before every real API call, show a Markdown confirmation table with the exact parameters that will be submitted. The table must use these columns: Parameter, Current value, Default value, Required, Description.
  6. If any dropdown fields are added in the future, show all available dropdown values in Markdown tables with exactly these columns: Label, Value. This tool currently has no dropdown fields.
  7. Ask the user whether any value should be changed. Do not call the API until the user explicitly confirms the table.
  8. Check for the Dataify API token only after parameter confirmation. Prefer a token explicitly provided by the user, then DATAIFY_API_TOKEN from the environment.
  9. If no token is available, tell the user: Missing Dataify API token. Provide a token, or log in/register at https://dataify.com/login. If you already have one, open https://dataify.com/dashboard/ and copy the API TOKEN from the top-right area.
  10. If the user provides a token and DATAIFY_API_TOKEN is not already saved locally, ask whether to save it as DATAIFY_API_TOKEN. Save it only after explicit consent and never echo the token back.
  11. After the API call, report the collection task ID and status. Look for common response fields such as task_id, taskId, id, status, data.task_id, data.id, or data.status. Then remind the user to view task details in the official dashboard: https://dataify.com/dashboard/

Parameter Preview

Use the preview helper whenever possible:

python scripts/preview_params.py --url "https://www.booking.com/hotel/gb/westlands-of-pitlochry.en-gb.html#tab-main"

For multiple parameter sets, pass the exact JSON array:

python scripts/preview_params.py --parameters-json '[{"url":"https://www.booking.com/hotel/gb/westlands-of-pitlochry.en-gb.html#tab-main"},{"url":"https://www.booking.com/hotel/us/example.en-gb.html"}]'

API Call

Use the call helper after confirmation and token handling:

python scripts/booking_hotellist.py --url "https://www.booking.com/hotel/gb/westlands-of-pitlochry.en-gb.html#tab-main"
python scripts/booking_hotellist.py --parameters-json '[{"url":"https://www.booking.com/hotel/gb/westlands-of-pitlochry.en-gb.html#tab-main"},{"url":"https://www.booking.com/hotel/us/example.en-gb.html"}]'

If the token was provided in the conversation instead of the environment, pass it with --token and do not expose it in user-facing output:

python scripts/booking_hotellist.py --token "USER_TOKEN" --url "https://www.booking.com/hotel/gb/westlands-of-pitlochry.en-gb.html#tab-main"

Tool

Mode Spider ID Required parameters Default spider_parameters
by-url booking_hotellist_by-url url [{"url":"https://www.booking.com/hotel/gb/westlands-of-pitlochry.en-gb.html#tab-main"}]

Every request also accepts file_name. If omitted, use {{TasksID}}.

Fixed Request Fields

Always submit to https://scraperapi.dataify.com/builder?platform=1 with:

Field Value
spider_name booking.com
spider_id booking_hotellist_by-url
spider_parameters JSON array of one or more parameter objects
spider_errors true
file_name User value, otherwise {{TasksID}}

Send parameters as form data. Keep spider_parameters as a JSON string inside the form body.

Usage Guidance
Review before installing if you will use a real Dataify API token. Prefer DATAIFY_API_TOKEN from a controlled environment or another non-argv secret mechanism, avoid placing tokens directly in shell commands, and only allow token persistence if you know exactly where it will be stored and how to remove it.
Capability Assessment
Purpose & Capability
The artifacts coherently implement a Dataify Booking.com hotel-listing collection helper: preview parameters, confirm user inputs, then submit form data to the documented Dataify builder endpoint.
Instruction Scope
The workflow requires explicit confirmation before API calls, but the documented example passes a user API token on the command line, which can expose the token through process arguments or shell history.
Install Mechanism
The package contains a skill file, two small Python helper scripts, and an agent UI descriptor; no dependency install, background service, or automatic execution mechanism is present.
Credentials
Network access to scraperapi.dataify.com and use of DATAIFY_API_TOKEN are purpose-aligned and disclosed, but the version metadata has sparse capability tagging for those powers.
Persistence & Privilege
The skill tells the agent it may save a provided token as DATAIFY_API_TOKEN after consent, but it does not specify where or how the token should be stored, scoped, rotated, or removed.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install dataify-booking-hotellist
  3. After installation, invoke the skill by name or use /dataify-booking-hotellist
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of the dataify-booking-hotellist skill. - Enables collection of Booking.com hotel information using the Dataify Scraper API. - Supports creating tasks for hotel info extraction from one or multiple Booking URLs. - Guides users through parameter setup and task confirmation in Markdown tables before each API call. - Handles API token management, including user input and safe storage options. - Provides clear feedback after task creation, including task ID, status, and dashboard instructions.
Metadata
Slug dataify-booking-hotellist
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Dataify Booking Hotellist?

Collect Booking hotel information through Dataify Scraper API. Use when the user asks to gather, scrape, crawl, fetch, extract, or collect Booking hotel info... It is an AI Agent Skill for Claude Code / OpenClaw, with 41 downloads so far.

How do I install Dataify Booking Hotellist?

Run "/install dataify-booking-hotellist" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Dataify Booking Hotellist free?

Yes, Dataify Booking Hotellist is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Dataify Booking Hotellist support?

Dataify Booking Hotellist is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Dataify Booking Hotellist?

It is built and maintained by dataify-server (@dataify-server); the current version is v1.0.0.

💬 Comments