ToolAssay

Problem

Problem: Compare these bounded estimator outputs against the supplied reference and objective rules. Input: JSON with reference, estimators, rules. Result: per-estimator metrics, rule verdicts, deterministic selected estimator or.... Limits: Software/model evidence only; 65536 request bytes; 5 s execution.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
488 msmedian answer time
$0.01listed price per call
$0.01price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://jobs.rqmtechnologies.com/x402/buyer-jobs/robotics.compare-state-estimators.v1

CategoryCode and developer
Provider hostjobs.rqmtechnologies.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.01 488 ms

Example input (from the provider)

{
  "body": {
    "idempotency_key": "example-robotics.compare-state-estimators.v1",
    "max_total_price": "0.010000",
    "request": {
      "estimators": [
        {
          "estimator_id": "a",
          "samples": [
            {
              "timestamp_s": 0,
              "values": [
                0
              ]
            },
            {
              "timestamp_s": 1,
              "values": [
                1
              ]
            },
            {
              "timestamp_s": 2,
              "values": [
                2
              ]
            }
          ]
        },
        {
          "estimator_id": "b",
          "samples": [
            {
              "timestamp_s": 0,
              "values": [
                0
              ]
            },
            {
              "timestamp_s": 1,
              "values": [
                1
              ]
            },
            {
              "timestamp_s": 2,
              "values": [
                2
              ]
            }
          ]
        }
      ],
      "reference": [
        {
          "timestamp_s": 0,
          "values": [
            0
          ]
        },
        {
          "timestamp_s": 1,
          "values": [
            1
          ]
        },
        {
          "timestamp_s": 2,
          "values": [
            2
          ]
        }
      ],
      "rules": [
        {
          "maximum": 0.01,
          "metric": "rmse"
        }
      ]
    },
    "schema_version": "rqm.jobs.bazaar-buyer-job-request.v1"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "additionalProperties": false,
          "properties": {
            "idempotency_key": {
              "maxLength": 128,
              "minLength": 1,
              "pattern": "^[A-Za-z0-9][A-Za-z0-9._:-]*$",
              "type": "string"
            },
            "max_total_price": {
              "pattern": "^(?:0|[1-9]\\d{0,13})(?:\\.\\d{1,6})?$",
              "type": "string"
            },
            "request": {
              "additionalProperties": false,
              "properties": {
                "estimators": {
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "estimator_id": {
                        "pattern": "^[A-Za-z0-9._-]{1,64}$",
                        "title": "Estimator Id",
                        "type": "string"
                      },
                      "samples": {
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "timestamp_s": {
                              "maximum": 86400,
                              "minimum": 0,
                              "title": "Timestamp S",
                              "type": "number"
                            },
                            "values": {
                              "items": {
                                "type": "number"
                              },
                              "maxItems": 12,
                              "minItems": 1,
                              "title": "Values",
                              "type": "array"
                            }
                          },
                          "required": [
                            "timestamp_s",
                            "values"
                          ],
                          "title": "TimedVector",
                          "type": "object"
                        },
                        "maxItems": 4096,
                        "minItems": 2,
                        "title": "Samples",
                        "type": "array"
                      }
                    },
                    "required": [
                      "estimator_id",
                      "samples"
                    ],
                    "title": "EstimatorOutput",
                    "type": "object"
                  },
                  "maxItems": 8,
                  "minItems": 2,
                  "title": "Estimators",
                  "type": "array"
                },
                "reference": {
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "timestamp_s": {
                        "maximum": 86400,
                        "minimum": 0,
                        "title": "Timestamp S",
                        "type": "number"
                      },
                      "values": {
                        "items": {
                          "type": "number"
                        },
                        "maxItems": 12,
                        "minItems": 1,
                        "title": "Values",
                        "type": "array"
                      }
                    },
                    "required": [
                      "timestamp_s",
                      "values"
                    ],
                    "title": "TimedVector",
                    "type": "object"
                  },
                  "maxItems": 4096,
                  "minItems": 2,
                  "title": "Reference",
                  "type": "array"
                },
                "rules": {
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "maximum": {
                        "maximum": 1000000000000,
                        "minimum": 0,
                        "title": "Maximum",
                        "type": "number"
                      },
                      "metric": {
                        "enum": [
                          "rmse",
                          "maximum_absolute_error",
                          "mean_absolute_error"
                        ],
                        "title": "Metric",
                        "type": "string"
                      }
                    },
                    "required": [
                      "metric",
                      "maximum"
                    ],
                    "title": "MetricRule",
                    "type": "object"
                  },
                  "maxItems": 3,
                  "minItems": 1,
                  "title": "Rules",
                  "type": "array"
                }
              },
              "required": [
                "reference",
                "estimators",
                "rules"
              ],
              "title": "EstimatorComparisonRequest",
              "type": "object"
            },
            "schema_version": {
              "const": "rqm.jobs.bazaar-buyer-job-request.v1"
            }
          },
          "required": [
            "schema_version",
            "idempotency_key",
            "max_total_price",
            "request"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "ou

This page as JSON