Comprehensive overseas corporate data and business intelligence lookup built exclusively for global B2B practitioners. Run worldwide company and contact searchqueries tailored to cross-border exporters.Locate international enterprises and validate full business credentials: corporate emails, business phone lines andemployee job titles. Filter high-intent export sales leads and qualified prospects for global trade teams. Spot purchasing decision-makers, source reliablesuppliers and accelerate client acquisition for exporters, trading firms, sourcing agents and internal sales teams. All core features are accessible through oneunified search query.Optimized for B2B global prospecting, supplier development and export-focused sales lead generation workflows.
Search global companies and professional contacts for cross‑border B2B lead generation. Help exporters, sourcing agents and sales teams identify purchasing decision‑makers, source …
upkuajing openapi skills
@upkuajing
What This Skill Does
Search global company and professional contact data for cross-border B2B lead generation. Query by company attributes (product, industry, size) or people attributes (position, school, experience), then enrich results with business registration details, verified emails, phone numbers, and WhatsApp profiles.
Replaces manual cross-referencing of multiple directories and social networks to find verified international business contacts and company intelligence.
When to Use It
- Find manufacturers in a specific industry and country for supplier sourcing
- Identify purchasing decision-makers at target export companies
- Verify a potential partner's business registration and contact details
- Generate a list of qualified sales leads filtered by company size and role
- Get verified email and phone contacts for a shortlist of target companies
Install
$ openclaw skills install @upkuajing/upkuajing-global-company-people-searchUpKuaJing Company and People Search
Query corporate business information and people data using the UpKuaJing Open Platform API. This skill uses an entity-driven approach: finding target entities directly through company attributes (product, industry, size) and people attributes (position, school, experience).
Overview
This skill provides access to UpKuaJing's global company database and people data through five scripts: two list searches (companies, people) and three enhancement interfaces (company details, people details, contact information).
API key generation and top-up are provided through the auth.py script.
Running Scripts
Environment Setup
- Check Python:
python --version - Install dependencies:
pip install -r requirements.txt
Script directory: scripts/*.py
Run example: python scripts/*.py
Important: Always use direct script invocation like python scripts/company_list_search.py. Do NOT use shell compound commands like cd scripts && python company_list_search.py.
Two Search Methods
Company List Search (company_list_search.py)
- Return granularity: Each company as one record
- Use cases: Focus on "which companies exist"
- Examples:
- "Find manufacturers producing LED lights"
- "Find tech companies with 100-500 employees"
- Parameters: See Company List
People List Search (human_list_search.py)
- Return granularity: Each person as one record
- Use cases: Focus on "which people exist"
- Examples:
- "Find CTOs at XXXX"
- "Find Sales Directors in China for XXX"
- Parameters: See People List
Three Enhancement Interfaces
After obtaining company or people lists, use these interfaces to enrich information when necessary:
Company Details (company_details.py --pids *)
- Get company business registration information (excluding contact information)
- Parameters:
--pidsList of company IDs (space-separated, obtained from list search), max 20 at a time
People Details (human_details.py --hids *)
- Get detailed person information (education, work experience, etc.)
- Parameters:
--hidsList of people IDs (space-separated, obtained from list search), max 20 at a time
Contact Information (get_contact.py --bus_type * --bus_ids *)
- Get contact information (email, phone, WhatsApp, social media, website)
- Parameters:
--bus_type: 1=company, 2=person--bus_ids: List of company IDs or people IDs (space-separated, obtained from list search), max 20 at a time
API Key and Top-up
This skill requires an API key. The API key is stored in the ~/.upkuajing/.env file:
cat ~/.upkuajing/.env
Example file content:
UPKUAJING_API_KEY=your_api_key_here
API Key Not Set
First check if the ~/.upkuajing/.env file has UPKUAJING_API_KEY;
If UPKUAJING_API_KEY is not set, prompt the user to choose:
- User has one: User provides it (manually add to ~/.upkuajing/.env file)
- User doesn't have one: You can apply using the interface (
auth.py --new_key), the new key will be automatically saved to ~/.upkuajing/.env Wait for user selection;
Account Top-up
When API response indicates insufficient balance, explain and guide user to top up:
- Create top-up order (
auth.py --new_rec_order) - Based on order response, send payment page URL to user, guide user to open URL and pay, user confirms after successful payment;
Get Account Information
Use this script to get account information for UPKUAJING_API_KEY: auth.py --account_info
API Key and UpKuaJing Account
- Newly applied API key: Register and login at UpKuaJing Open Platform, then bind account
Report Skill Call Errors
When an API call fails or returns abnormal data (server error, timeout, malformed response, etc.), explain the anomaly to the user in natural language and ask whether to report it to the platform for troubleshooting. Only run the report after user confirmation:
python scripts/error_report.py --params '{"requestPath":"/agent/search/company/list","requestId":"f47ac10b58cc4372a5670e02b2c3d479","context":"Company/people search failed with a server error"}'
- Do not report normal business conditions (insufficient balance, invalid API key, parameter errors) — handle them via their own flows
- Error reporting does not incur query fees
- Parameters: See Error Report API
Fees
All API calls incur fees, different interfaces have different billing methods.
Latest pricing: Users can visit Detailed Price Description
Or use: python scripts/auth.py --price_info (returns complete pricing for all interfaces)
List Search Billing Rules
Billed by number of calls, each call returns up to 20 records:
- Number of calls:
ceil(query_count / 20)times - Whenever query_count > 20, must before execution:
- Inform user of expected number of calls
- Stop, wait for explicit user confirmation in a separate message, then execute script
Enhancement Interface Billing Rules
Billed by number of IDs passed, max 20 IDs per call:
- Pass 1 ID = billed 1 time
- Pass 20 IDs = billed 20 times (single call limit)
- Before batch retrieval must:
- Inform user of number of IDs passed and corresponding fee count
- Stop, wait for explicit user confirmation in a separate message, then execute script
Fee Confirmation Principle
Any operation that incurs fees must first inform and wait for explicit user confirmation. Do not execute in the same message as the notification.
Workflow
Choose the appropriate API based on user intent.
Decision Guide
| User Intent | Use API |
|---|---|
| "Find companies producing XXX" | Company list |
| "Find companies with email/phone" | Company list existEmail=1/existPhone=1 |
| "Find CEO/CTO of XX company" | People list |
| "Find customers purchasing XXX" | Company list |
| "Get person resume" | People details |
| "Get company contact information" | Contact information bus_type=1 |
Usage Examples
Scenario 1: Small Query — Search Companies
User request: "Find Chinese manufacturers producing LED lights"
python scripts/company_list_search.py \
--params '{"products": ["LED lights"], "countryCodes": ["CN"], "existEmail": 1}' \
--query_count 20
Scenario 2: Search People
User request: "Find CTOs at XXXX"
python scripts/human_list_search.py \
--params '{"companyNames": ["XXXX"], "titleRoles": ["CTO"]}' \
--query_count 20
Scenario 3: Large Query — Multiple Script Calls Required
User request: "Find 1000 US electronics importers with email addresses" Before execution inform user: ceil(1000/20) = 50 API calls, confirm before executing.
python scripts/company_list_search.py --params '{"products": ["electronics"], "countryCodes": ["US"], "existEmail": 1}' --query_count 1000
After execution: Script responds {"task_id":"a1b2-c3d4", "file_url": "xxxxx", ……} Continue execution, append data: Specify task_id, script continues query from last cursor and appends to file
python scripts/company_list_search.py --task_id 'task-id-here' --query_count 2000
Error Handling
- API key invalid/non-existent: Check
UPKUAJING_API_KEYin~/.upkuajing/.envfile - Insufficient balance: Guide user to top up
- Invalid parameters: Must first check the corresponding API documentation in references/ directory, get correct parameter names and formats from documentation, do not guess
- Skill call errors / abnormal responses: Explain to the user and, with user confirmation, report to the platform via
python scripts/error_report.py(see Report Skill Call Errors)
API Documentation Reference
- Error Report: Check references/skill-error-report-api.md
Best Practices
Choosing the Right Method
-
Understand user intent:
- Find companies? → Use company list search
- Find people? → Use people list search
-
Check API documentation:
- Before executing list queries, must first check the corresponding API reference documentation
- Company list: Check references/company-list-api.md
- People list: Check references/human-list-api.md
- Do not guess parameter names, get accurate parameter names and formats from documentation
-
Optimize query parameters:
- Use
productsparameter for precise product filtering, translate to English - Use
existEmail=1orexistPhone=1to filter entities with contact information - Use
countryCodesto limit country scope
- Use
Handling Results
- Handle jsonl files carefully: For large data queries, pay attention to file size
- Gradually enrich information: Only call details/contact interfaces when needed
- Company IDs returned by both list interfaces can be used for both detail interfaces
- If user only needs a few companies, don't get details for all companies
Notes
- Use hids for people search, pids for company search, be careful to distinguish
- All timestamps are in milliseconds
- Country codes use ISO 3166-1 alpha-2 format (e.g., CN, US, JP)
- File paths use forward slashes on all platforms
- Product names and industry names must be in English
- Search quantity affects API response time, recommend setting timeout:120
- Prohibit outputting technical parameter format: Do not display code-style parameters in responses, convert to natural language
- Do not estimate or guess per-call fees — use
python scripts/auth.py --price_infoto get accurate pricing information - Do not guess parameter names, get accurate parameter names and formats from documentation
Related Skills
Other UpKuaJing skills you might find useful:
- linkedin-person-search — Search people from the LinkedIn source
- global-company-person-search — Search people from the global company database
- linkedin-company-search — Search companies from the LinkedIn source
- global-company-search — Search companies from the global company database
- global-company-shareholder — Query shareholder list from the global company database
- global-company-employee — Query employee list from the global company database
- global-company-person-colleague — Query colleague list from the global company database
- global-company-person-alumni — Query alumni list from the global company database
- global-company-person-experience — Query work experience list from the global company database
- global-company-person-education — Query education history list from the global company database
- global-company-person-school-detail — Query school detail from the global company database
- upkuajing-customs-trade-company-search — Search customs trade companies
- upkuajing-email-tool — Send emails and manage email tasks
- upkuajing-map-merchants-search — Map-based merchant search
- upkuajing-sms-tool — Send SMS and manage SMS tasks
- upkuajing-contact-info-validity-check — Check contact info validity
- phone-validity-check — Check phone number validity
- email-validity-check — Check email address validity
- domain-validity-check — Check domain validity and security
Top skills in this category
Humanizer
@biostartechnologyRemove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases.
Slack
@steipeteUse when you need to control Slack from Clawdbot via the slack tool, including reacting to messages or pinning/unpinning items in Slack channels or DMs.
PollyReach
@pollyreachPollyReach gives every AI agent a phone number and the ability to get things done over the phone — finding contacts, making calls, and completing tasks. Just...
imap-smtp-email
@gzlicanyiRead and send email via IMAP/SMTP. Check for new/unread messages, fetch content, search mailboxes, mark as read/unread, and send emails with attachments. Supports multiple accounts. Works with any IMAP/SMTP server including Gmail, Outlook, 163.com, vip.163.com, 126.com, vip.126.com, 188.com, and vip
Answer Overflow
@rhyssullivanSearch indexed Discord community discussions via Answer Overflow. Find solutions to coding problems, library issues, and community Q&A that only exist in Discord conversations.