{
  "x402Version": 2,
  "id": 8236,
  "slug": "8236",
  "resource": "https://bounty-signals.krimskrams.xyz/v1/job-health",
  "description": "Answer whether an agent can claim a stored bounty job and show its observed health history before it spends a claim. Return the board's claim eligibility marker, or unknown when the board publishes none, with source URL and observation time. Also return observed states, transitions, submission and pass counts, reopen-after-accept events, observation count, and as_of. Coverage is BountyBook, Taskmarket, and Superteam. The paid answer adds stored history; it does not infer eligibility.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x276efA09388fB1578A6c415B8F90D26fdfCe0CF2",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "20000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "method": "GET",
          "queryParams": {
            "job_id": "1063de95-75f4-4170-8879-f5b1b683bb9b",
            "platform": "bountybook"
          },
          "type": "http"
        },
        "output": {
          "example": {
            "as_of": "2026-08-28T07:30:00Z",
            "claim_eligibility": {
              "observed_at": "2026-08-28T07:30:00Z",
              "source_url": "https://api.bountybook.ai/jobs/1063de95-75f4-4170-8879-f5b1b683bb9b",
              "value": "unknown"
            },
            "job_id": "1063de95-75f4-4170-8879-f5b1b683bb9b",
            "observations": 1,
            "pass_counts": [],
            "platform": "bountybook",
            "reopen_after_accept_events": [],
            "seen_accepted": {
              "source_urls": [],
              "value": false
            },
            "seen_open": {
              "source_urls": [],
              "value": true
            },
            "state_transitions": [],
            "submission_counts": []
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "method": {
                "enum": [
                  "GET",
                  "HEAD",
                  "DELETE"
                ],
                "type": "string"
              },
              "queryParams": {
                "properties": {
                  "job_id": {
                    "maxLength": 200,
                    "minLength": 1,
                    "pattern": "^[A-Za-z0-9_-]+$",
                    "title": "Job Id",
                    "type": "string"
                  },
                  "platform": {
                    "enum": [
                      "bountybook",
                      "taskmarket",
                      "superteam"
                    ],
                    "title": "Platform",
                    "type": "string"
                  }
                },
                "required": [
                  "platform",
                  "job_id"
                ],
                "title": "JobHealthParams",
                "type": "object"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "properties": {
                  "as_of": {
                    "anyOf": [
                      {
                        "format": "date-time",
                        "type": "string"
                      },
                      {
                        "type": "null"
                      }
                    ],
                    "title": "As Of"
                  },
                  "claim_eligibility": {
                    "properties": {
                      "observed_at": {
                        "anyOf": [
                          {
                            "format": "date-time",
                            "type": "string"
                          },
                          {
                            "type": "null"
                          }
                        ],
                        "title": "Observed At"
                      },
                      "source_url": {
                        "anyOf": [
                          {
                            "type": "string"
                          },
                          {
                            "type": "null"
                          }
                        ],
                        "title": "Source Url"
                      },
                      "value": {
                        "title": "Value",
                        "type": "string"
                      }
                    },
                    "title": "ClaimEligibilityFact",
                    "type": "object"
                  },
                  "job_id": {
                    "title": "Job Id",
                    "type": "string"
                  },
                  "observations": {
                    "title": "Observations",
                    "type": "integer"
                  },
                  "pass_counts": {
                    "items": {
                      "properties": {
                        "count": {
                          "title": "Count",
                          "type": "integer"
                        },
                        "observed_at": {
                          "format": "date-time",
                          "title": "Observed At",
                          "type": "string"
                        },
                        "source_url": {
                          "title": "Source Url",
                          "type": "string"
                        }
                      },
                      "title": "CountObservation",
                      "type": "object"
                    },
                    "title": "Pass Counts",
                    "type": "array"
                  },
                  "platform": {
                    "title": "Platform",
                    "type": "string"
                  },
                  "reopen_after_accept_events": {
                    "items": {
                      "properties": {
                        "accepted_at": {
                          "format": "date-time",
                          "title": "Accepted At",
                          "type": "string"
                        },
                        "accepted_source_url": {
                          "title": "Accepted Source Url",
                          "type": "string"
                        },
                        "reopened_at": {
                          "format": "date-time",
                          "title": "Reopened At",
                          "type": "string"
                        },
                        "reopened_source_url": {
                          "title": "Reopened Source Url",
                          "type": "string"
                        }
                      },
                      "title": "ReopenEvent",
                      "type": "object"
                    },
                    "title": "Reopen After Accept Events",
                    "type": "array"
                  },
                  "seen_accepted": {
                    "properties": {
                      "source_urls": {
                        "items": {
                          "type": "string"
                        },
                        "title": "Source Urls",
                        "type": "array"
                      },
                      "value": {
                        "title": "Value",
                        "type": "boolean"
                      }
                    },
                    "title": "ObservedFact",
                    "type": "object"
                  },
                  "seen_open": {
                    "properties": {
                      "source_urls": {
                        "items": {
                          "type": "string"
                        },
                        "title": "Source Urls",
                        "type": "array"
                      },
                      "value": {
                        "title": "Value",
                        "type": "boolean"
                      }
                    },
                    "title": "ObservedFact",
                    "type": "object"
                  },
                  "state_transitions": {
                    "items": {
                      "properties": {
                        "from_state": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ],
                          "title": "From State"
                        },
                        "observed_at": {
                          "format": "date-time",
                          "title": "Observed At",
                          "type": "string"
                        },
                        "source_url": {
                          "title": "Source Url",
                          "type": "string"
                        },
                        "to_state": {
                          "title": "To State",
                          "type": "string"
                        }
                      },
                      "title": "StateTransition",
                      "type": "object"
                    },
                    "title": "State Transitions",
                    "type": "array"
                  },
                  "submission_counts": {
                    "items": {
                      "properties": {
                        "count": {
                          "title": "Count",
                          "type": "integer"
                        },
                        "observed_at": {
                          "format": "date-time",
                          "title": "Observed At",
                          "type": "string"
                        },
                        "source_url": {
                          "title": "Source Url",
                          "type": "string"
                        }
                      },
                      "title": "CountObservation",
                      "type": "object"
                    },
                    "title": "Submission Counts",
                    "type": "array"
                  }
                },
                "title": "JobHealthResponse",
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "bounty-signals.krimskrams.xyz",
  "lastUpdated": "2026-09-08T23:08:40.884Z",
  "quality": {
    "calls30d": 7,
    "uniquePayers30d": 7,
    "lastCalledAt": "2026-09-08T23:08:40.369Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "bounty-signals.krimskrams.xyz",
    "manifest_name": "bounty-signals.krimskrams.xyz",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}