# Computrabajo Jobs Scraper

> Computrabajo Jobs Scraper is a paid API for AI agents from api.timzinin.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Scrapes and returns job listings from Computrabajo (Latin American job board) for a given search query and country

## Facts

- Endpoint: POST https://api.timzinin.com/api/computrabajo-jobs
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/computrabajo-jobs-scraper-b6cf0ca0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MDRooDhfptZnxQ-myYJqi

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability computrabajo-jobs-scraper-b6cf0ca0 -d '<json body>'
```

Example prompt: Search Computrabajo for 'desarrollador' jobs in Colombia and give me the latest listings including company names, locations, and ratings.

## When to prefer this

Use this endpoint when you need to programmatically access job listings from Computrabajo, the dominant job board across Latin America (Colombia, Mexico, Argentina, etc.), and want structured data including job title, company, location, posting recency, and company rating. Prefer this over general web search when you need reliable structured output from Computrabajo specifically, or when building recruitment pipelines targeting Latin American talent markets.

## Known failure modes

- No results found for the given query/country combination — results array will be empty
- Computrabajo blocks or rate-limits the scraper — may return error or empty results
- Invalid country code or unsupported region — may return an error response
- Computrabajo changes its HTML structure — scraper may return partial or malformed data
- Timeout if Computrabajo is slow to respond — run_ms may be high or request may fail

## How this service works

Pay-per-call data & tool APIs

## Output

A JSON object containing a meta block (run time in ms, settlement status, item count) and a results array where each item includes the job listing URL, a found flag, the input query used, job title, company name, location string, relative posting time, ISO scraped timestamp, and company rating score.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "items": {
   "type": "array",
   "maxItems": 25
  },
  "maxConcurrency": {
   "type": "integer",
   "maximum": 20,
   "minimum": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "meta": {
   "run_ms": 1200,
   "settled": true,
   "item_count": 1
  },
  "results": [
   {
    "url": "https://co.computrabajo.com/ofertas-de-trabajo/oferta-de-trabajo-de-programador-cnc-vacante-inclusiva-en-barranquilla-CFBF5CB0836774AB61373E686DCF3405#lc=ListOffers-Score4-0",
    "found": true,
    "input": "co:desarrollador",
    "title": "Programador CNC Vacante Inclusiva",
    "company": "Caja De Compensacion Familiar Comfamiliar Atlantico",
    "location": "Barranquilla, Atlántico",
    "postedAt": "Hace 3 horas",
    "scrapedAt": "2026-07-26T15:25:15.914Z",
    "companyRating": 4.7
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/computrabajo-jobs-scraper-b6cf0ca0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.timzinin.com](https://www.zero.xyz/host/api.timzinin.com/llms.txt)
