mirrored listing x402 eip155:8453

Given a company name, returns the company's currently open job postings, normalized into a

Given a company name, returns the company's currently open job postings, normalized into a single structured JSON response (title, department, location, posted date, URL).

Do you run api.qonoro.ai? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
50000 (raw units)
price
3
calls / 30d
1
unique payers
2026-08-26
updated

Provider

api.qonoro.ai · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x40B62aa49F4a929760fb2DD0Fcb0642f0AA872eb",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "50000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "company_name": "Stripe",
          "domain": "stripe.com"
        },
        "bodyType": "json",
        "inputSchema": {
          "properties": {
            "buyer_region": {
              "description": "Optional privacy-safe buyer region for operational reporting.",
              "type": "string"
            },
            "company_name": {
              "description": "Company name to look up open job postings for (e.g. 'Stripe').",
              "type": "string"
            },
            "domain": {
              "description": "Optional company domain hint (e.g. 'stripe.com') to improve match accuracy.",
              "type": "string"
            }
          },
          "required": [
            "company_name"
          ],
          "type": "object"
        },
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "ats_source": "greenhouse",
          "board_resolved": true,
          "cache_hit": false,
          "company_name": "Stripe",
          "domain": "stripe.com",
          "job_postings": [
            {
              "department": "Engineering",
              "location": "Remote",
              "posted_date": "2026-06-15",
              "source_ats": "greenhouse",
              "title": "Software Engineer, Payments",
              "url": "https://boards.greenhouse.io/stripe/jobs/1234567"
            },
            {
              "department": "Sales",
              "location": "San Francisco, CA",
              "posted_date": "2026-06-20",
              "source_ats": "greenhouse",
              "title": "Account Executive, Enterprise",
              "url": "https://boards.greenhouse.io/stripe/jobs/7654321"
            }
          ],
          "quality_warnings": [],
          "request_id": "example-request-id",
          "response_time_ms": 812.4,
          "total_open_roles": 2
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "buyer_region": {
                  "description": "Optional privacy-safe buyer region for operational reporting.",
                  "type": "string"
                },
                "company_name": {
                  "description": "Company name to look up open job postings for (e.g. 'Stripe').",
                  "type": "string"
                },
                "domain": {
                  "description": "Optional company domain hint (e.g. 'stripe.com') to improve match accuracy.",
                  "type": "string"
                }
              },
              "required": [
                "company_name"
              ],
              "type": "object"
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            },
            "inputSchema": {
              "type": "object"
            },
            "method": {
              "enum": [
                "POST",
                "PUT",
                "PATCH"
              ],
              "type": "string"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "properties": {
                "ats_source": {
                  "nullable": true,
                  "type": "string"
                },
                "board_resolved": {
                  "type": "boolean"
                },
                "cache_hit": {
                  "type": "boolean"
                },
                "company_name": {
                  "type": "string"
                },
                "domain": {
                  "nullable": true,
                  "type": "string"
                },
                "job_postings": {
                  "items": {
                    "properties": {
                      "department": {
                        "nullable": true,
                        "type": "string"
                      },
                      "location": {
                        "nullable": true,
                        "type": "string"
                      },
                      "posted_date": {
                        "nullable": true,
                        "type": "string"
                      },
                      "source_ats": {
                        "type": "string"
                      },
                      "title": {
                        "type": "string"
                      },
                      "url": {
                        "type": "string"
                      }
                    },
                    "type": "object"
                  },
                  "type": "array"
                },
                "quality_warnings": {
                  "items": {
                    "type": "string"
                  },
                  "type": "array"
                },
                "request_id": {
                  "type": "string"
                },
                "response_time_ms": {
                  "nullable": true,
                  "type": "number"
                },
                "total_open_roles": {
                  "type": "integer"
                }
              },
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://api.qonoro.ai/v1/hiring-signals/find"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://api.qonoro.ai/v1/hiring-signals/find");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://api.qonoro.ai/v1/hiring-signals/find")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/3205.json, and this resource appears in /discovery/resources and /discovery/search.