Install
openclaw skills install @tonywangcn/indeed-researchSearches Indeed job postings and pulls single job listings via the Crawlora API — keyword + location search, location autocomplete, and job detail by job key — returning clean JSON. Use when the user wants to search Indeed for jobs, look up location suggestions for an Indeed search, or fetch the full detail of a specific Indeed posting.
openclaw skills install @tonywangcn/indeed-researchSearch Indeed job postings by keyword and location, resolve a valid location string via autocomplete, and pull the full detail of a single posting — all as normalized JSON from the Crawlora API, no scraping indeed.com by hand.
export CRAWLORA_API_KEY=sk_your_key_herex-api-key: $CRAWLORA_API_KEY against
https://api.crawlora.net/api/v1. Missing/invalid key → 401./indeed/locations/suggest
takes a partial location string (q) and returns Indeed's own autocomplete
suggestions, the same ones the app's search bar offers, so you can build a
valid l value for search instead of guessing./indeed/search takes keywords (q, required) plus optional
l (location), radius, fromage (only jobs posted within the last N
days), sort (relevance or date), and page for pagination. Each
result includes a job_key for pulling full detail./indeed/job takes jk (the 16-character hex job key
from a search result) and returns the full posting.Full endpoint list, methods, and params: reference/endpoints.md.
# Resolve a location string:
scripts/crawlora.sh /indeed/locations/suggest q="san fran" | jq '.'
# Search:
scripts/crawlora.sh /indeed/search q="staff engineer" l="San Francisco, CA" fromage=7 sort=date | jq '.'
# Job detail (jk from a search result):
scripts/crawlora.sh /indeed/job jk=abcdef0123456789 | jq '.'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/indeed/search?q=staff+engineer&l=Remote" | jq '.'
See reference/endpoints.md for all 3 Indeed
endpoints this skill uses.
/indeed/locations/suggest on the
user's rough city name to get a valid l value, then /indeed/search
with that value plus q and sort=date for the newest postings first./indeed/search, take the job_key off
any hit, and call /indeed/job to pull the full description, salary, and
application details for that one posting.2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.CRAWLORA_API_KEY only — never hardcode, query-param, or commit it.page 2+ and fromage fall back to a slower page-based transport —
page 1 with no fromage uses Indeed's fast credential-free GraphQL API;
requesting page 2+ or filtering by fromage switches transports, with
the same normalized response shape either way./indeed/locations/suggest
is GraphQL-only, so it can fail independently of search/job-detail./indeed/search — pass page to walk the full list.