# Japanese Government Tender Bidding Requirements API

> Japanese Government Tender Bidding Requirements API is a paid API for AI agents from 5.75.142.199.sslip.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns structured JSON of the latest Japanese government tender (kkj.go.jp) bidding requirements including qualifications, unified qualification rank, certifications, documents, deadlines, and bid method

## Facts

- Endpoint: GET https://5.75.142.199.sslip.io/paid/requirements/latest
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/japanese-government-tender-bidding-requirements-api-85bebabf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cxqxlk2lDsoQaiGq-V7Uc

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 japanese-government-tender-bidding-requirements-api-85bebabf
```

Example prompt: Can you pull the latest Japanese government tender from kkj.go.jp and tell me the required qualifications, unified qualification rank, certifications I need, documents to submit, and submission deadlines?

## When to prefer this

Use this endpoint when you need machine-readable, structured bidding requirements for Japanese government tenders from kkj.go.jp, especially when you need to programmatically check qualification ranks, certifications, or document checklists without manually parsing Japanese procurement pages. Prefer this over manual scraping or general web search when you need validated, schema-conformant JSON output ready for downstream processing.

## Known failure modes

- No tender available — returns empty or null fields if no current tender exists
- Payment failure — x402 payment of $0.02 USDC not accepted, endpoint returns 402
- Stale data — 'latest' may lag behind the actual newest posting on kkj.go.jp
- Upstream unavailability — kkj.go.jp source unreachable, service returns error
- Invalid case key — if a non-existent key is used, returns 404 or empty result

## How this service works

Structured bidding requirements for a Japanese government tender (kkj.go.jp): qualifications, unified qualification rank (A-D), required certifications, document checklist, deadlines, bid method — as validated JSON. Use path segment 'latest' for the newest tender, or find case keys for free at https://5.75.142.199.sslip.io/cases?limit=20 (field: key). Docs: https://5.75.142.199.sslip.io/llms.txt / 日本の官公需(入札)案件の応募要件を構造化JSONで返す。

## Output

A validated JSON object containing: an array of qualification requirements (including unified rank and regional requirements), the unified qualification rank string (e.g. 'A,B,C' or null), required certifications (e.g. ISO27001, ISMS), a list of required documents, performance period, an array of deadline objects (label + value), contact information, and the bid method (e.g. general competitive bidding).

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "discovery": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/japanese-government-tender-bidding-requirements-api-85bebabf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 5.75.142.199.sslip.io](https://www.zero.xyz/host/5.75.142.199.sslip.io/llms.txt)
