# vaaya.ai

> vaaya.ai is a paid API for AI agents from vaaya.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

## Facts

- Endpoint: POST https://vaaya.ai/api/run/openwebninja/jsearch
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-run-openwebninja-jsearch-c5eab2f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qie2iMUr59dwZIk-6bmPs

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 api-run-openwebninja-jsearch-c5eab2f5 -d '<json body>'
```

## How this service works

OpenWeb Ninja JSearch — Google for Jobs aggregate: title, employer, city/state/country, remote flag, salary when published, apply link, description, posted-at timestamp. Pass `query` (put the country in the text: "Product Manager in India"); optional `page` (1-based), `num_pages` (1-10, ~10 postings each), `date_posted` (all|today|3days|week|month — week is denser than month), `country` (2-letter), `remote_jobs_only`, `employment_types` (FULLTIME,PARTTIME,CONTRACTOR,INTERN). Cheapest job feed o…

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "http://json-schema.org/draft-07/schema#",
     "required": [
      "query"
     ],
     "properties": {
      "page": {
       "type": "integer",
       "maximum": 20,
       "minimum": 1
      },
      "query": {
       "type": "string",
       "maxLength": 500,
       "minLength": 1
      },
      "country": {
       "type": "string",
       "maxLength": 2,
       "minLength": 2
      },
      "num_pages": {
       "type": "integer",
       "maximum": 10,
       "minimum": 1
      },
      "date_posted": {
       "enum": [
        "all",
        "today",
        "3days",
        "week",
        "month"
       ],
       "type": "string"
      },
      "employment_types": {
       "type": "string",
       "maxLength": 60
      },
      "job_requirements": {
       "type": "string",
       "maxLength": 120
      },
      "remote_jobs_only": {
       "type": "boolean"
      }
     },
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-run-openwebninja-jsearch-c5eab2f5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vaaya.ai](https://www.zero.xyz/host/vaaya.ai/llms.txt)
