Available endpoints (2)

Setup and exact call parameters for AI Agents
I want to use the Indeed Scraper service on Fast Marketplace.

## Setup (skip if you already have Fast Marketplace set up)
1. Open the marketplace skill: https://marketplace.fast.xyz/skill.md
2. Fund a Fast wallet on mainnet.
3. Provide a query and location or direct Indeed search URLs.
4. Keep the returned job token and poll the marketplace job route for completion.

## Available Endpoints

### Search Jobs ($0.0001 USDC)
curl -X POST "https://api.marketplace.fast.xyz/api/apify-indeed/search-jobs" \
  -H "Content-Type: application/json" \
  -d '{
  "query": "Data Engineer",
  "location": "Remote",
  "maxItems": 50
}'

Use this for Indeed-native job search and monitoring, especially when you want job board coverage outside LinkedIn.

### Search URL Jobs ($0.0001 USDC)
curl -X POST "https://api.marketplace.fast.xyz/api/apify-indeed/search-url-jobs" \
  -H "Content-Type: application/json" \
  -d '{
  "maxItems": 50,
  "startUrls": [
    "https://www.indeed.com/jobs?q=data+engineer&l=Remote"
  ]
}'

Use this when you already have a curated Indeed search URL and want that exact results page scraped.

For paid endpoints: the first call returns 402. Authorize payment with your Fast wallet and retry with the payment signature header.
Have a request?

Suggest marketplace coverage