← All skills
Tencent SkillHub · Developer Tools

Swiss Phone Directory

Swiss phone directory lookup via search.ch API. Search for businesses, people, or reverse-lookup phone numbers. Use when: (1) finding contact details for Swiss companies or people, (2) looking up addresses by name or phone number, (3) reverse phone number lookup, (4) finding business categories. Requires SEARCHCH_API_KEY.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Swiss phone directory lookup via search.ch API. Search for businesses, people, or reverse-lookup phone numbers. Use when: (1) finding contact details for Swiss companies or people, (2) looking up addresses by name or phone number, (3) reverse phone number lookup, (4) finding business categories. Requires SEARCHCH_API_KEY.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, configuration.md, searchch.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

Swiss Phone Directory Skill

Search the Swiss phone directory (search.ch) for businesses, people, and phone numbers.

Quick Start

# Search for a business python3 scripts/searchch.py search "Migros" --location "Zürich" # Search for a person python3 scripts/searchch.py search "Müller Hans" --type person # Reverse phone number lookup python3 scripts/searchch.py search "+41442345678" # Business-only search python3 scripts/searchch.py search "Restaurant" --location "Bern" --type business --limit 5

search

Search for businesses, people, or phone numbers. python3 scripts/searchch.py search <query> [options] Options: --location, -l City, ZIP, street, or canton (e.g., "Zürich", "8000", "ZH") --type, -t Filter: "business", "person", or "all" (default: all) --limit, -n Max results (default: 10, max: 200) --lang Output language: de, fr, it, en (default: de)

Examples

# Find restaurants in Rapperswil python3 scripts/searchch.py search "Restaurant" -l "Rupperswil" -t business -n 5 # Find a person by name python3 scripts/searchch.py search "Meier Peter" -l "Zürich" -t person # Reverse lookup a phone number python3 scripts/searchch.py search "044 123 45 67" # Search with canton abbreviation python3 scripts/searchch.py search "Bäckerei" -l "SG"

Output Format

Results include (when available): Name - Business or person name Type - Organisation or Person Address - Street, ZIP, city, canton Phone - Clickable tel: link (e.g., [044 123 45 67](tel:+41441234567)) Fax - Clickable tel: link Email - Email address Website - Website URL Categories - Business categories

Clickable Phone Numbers 📞

Phone numbers are automatically formatted as Markdown links with tel: protocol: 📞 [044 123 45 67](tel:+41441234567) This enables one-tap calling on mobile devices (Telegram, Signal, WhatsApp, etc.). To disable clickable links, use --no-clickable.

Get an API Key (free)

Request a key: https://search.ch/tel/api/getkey.en.html Fill out the form (name, email, use case) Approval: ~10-15 minutes, key arrives via email

Set the Environment Variable

export SEARCHCH_API_KEY="your-api-key-here" For permanent setup, see references/configuration.md.

API Reference

Base URL: https://search.ch/tel/api/ Rate limits: Depend on API key tier Full docs: https://search.ch/tel/api/help.en.html

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • configuration.md Docs
  • searchch.py Scripts