# SixPath Active Jobs DB Search

> SixPath Active Jobs DB Search is a paid API for AI agents from sixpath.vercel.app, paid per call via x402, $0.174144/call, status unknown (last checked 2026-09-14).

Searches an active jobs database by query and location, returning matching job listings and a count.

## Facts

- Endpoint: POST https://sixpath.vercel.app/api/active-jobs-db
- Price: $0.174144/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sixpath-active-jobs-db-search-1ca9c4bb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UNedeIJh0fP9xPvG_fah2

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 sixpath-active-jobs-db-search-1ca9c4bb -d '<json body>'
```

Example prompt: Can you search the active jobs database for 'software engineer' positions in 'Austin, Texas' and show me what openings are currently available?

## When to prefer this

Use this endpoint when you need to search active job postings by keyword and geographic location in a single pay-per-call request, especially within an automated agent workflow that uses the x402 micropayment protocol on Base chain.

## Known failure modes

- Empty results if no jobs match the query and location combination
- Missing or invalid input fields may result in an error or empty response
- Service unavailability on the Vercel-hosted endpoint could return 5xx errors
- Payment failure via x402 protocol on Base chain could prevent access
- Stale or incomplete job database may return outdated listings

## How this service works

All-in-one API hub: Social Media, Jobs, Finance, Crypto, and Tools. Pay-per-call with x402 protocol on Base chain.

## Output

Returns a JSON object containing an array of job objects matching the query and location, along with a count integer indicating how many results were found.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "description": "Search query"
  },
  "location": {
   "type": "string",
   "description": "Job location"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "jobs": {
   "type": "array",
   "items": {
    "type": "object"
   }
  },
  "count": {
   "type": "integer"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sixpath-active-jobs-db-search-1ca9c4bb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sixpath.vercel.app](https://www.zero.xyz/host/sixpath.vercel.app/llms.txt)
