Install
openclaw skills install @upkuajing/linkedin-company-searchOfficial skill for upkuajing (跨境魔方). Search companies (找公司) from LinkedIn data. Find companies by name, industry, size, and founded year. Ideal for customer development and market research on LinkedIn data.
openclaw skills install @upkuajing/linkedin-company-searchSearch company data from LinkedIn using the UpKuaJing Open Platform API.
This skill provides access to UpKuaJing's LinkedIn company data through one list search script. API key generation and top-up are provided through the auth.py script.
python --versionpip install -r requirements.txtScript directory: scripts/*.py
Run example: python scripts/*.py
Important: Always use direct script invocation like python scripts/linkedin_company_search.py. Do NOT use shell compound commands like cd scripts && python linkedin_company_search.py
linkedin_company_search.py)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
First check if the ~/.upkuajing/.env file has UPKUAJING_API_KEY;
If UPKUAJING_API_KEY is not set, prompt the user to choose:
auth.py --new_key), the new key will be automatically saved to ~/.upkuajing/.env
Wait for user selection;When API response indicates insufficient balance, explain and guide user to top up:
auth.py --new_rec_order)Use this script to get account information for UPKUAJING_API_KEY: auth.py --account_info
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)
Billed by number of calls, each call returns up to 20 records:
ceil(query_count / 20) timesAny operation that incurs fees must first inform and wait for explicit user confirmation. Do not execute in the same message as the notification.
Choose parameters based on user intent.
| User Intent | Use API |
|---|---|
| "Find companies producing XXX" | LinkedIn company list (keywords / companyNames) |
| "Find companies with email/phone" | LinkedIn company list existEmail=1 / existPhone=1 |
| "Find companies with 100-500 employees" | LinkedIn company list companySizes=["51-200","201-500"] |
| "Find companies founded after 2015" | LinkedIn company list minCompanyFounded=2015 |
User request: "Find Chinese manufacturers producing LED lights"
python scripts/linkedin_company_search.py \
--params '{"keywords": ["LED lights"], "countryCodes": ["CN"], "existEmail": 1}' \
--query_count 20
User request: "Find 1000 US electronics companies with email addresses" Before execution inform user: ceil(1000/20) = 50 API calls, confirm before executing.
python scripts/linkedin_company_search.py --params '{"keywords": ["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 from where it left off and appends to file
python scripts/linkedin_company_search.py --task_id 'task-id-here' --query_count 2000
UPKUAJING_API_KEY in ~/.upkuajing/.env fileCheck API documentation:
Optimize query parameters:
keywords / companyNames to filter precisely; industry and product names must be in EnglishexistEmail=1 or existValidEmail=1 to filter companies with contact informationcountryCodes to limit country scope; use companySizes to limit company sizeLarge result sets:
pid as the unique identifierpython scripts/auth.py --price_info to get accurate pricing informationOther UpKuaJing skills you might find useful: