ToolAssay

Score up to 25 company or contact records against an ideal customer profile

Score up to 25 company or contact records against an ideal customer profile: 0-10 fit score, qualified / review / disqualified verdict, reason label. Calibrated on 240 labelled leads: 0.879 accuracy, and no qualified lead ever disqualified or vice versa. Catches competitor name variants and subsidiaries of excluded accounts that string matching misses. Uncertainty widens the net: sparse records, unnamed contacts and low-confidence calls go to review, never to disqualified.

Answers HTTP 404 without x402 payment termsour last check, 2026-09-25
0 of 1checks answered this week
n/amedian answer time
$0.1listed price per call
n/aprice 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://x402-testnet-production.up.railway.app/v1/score-leads

CategoryCompany and compliance
Provider hostx402-testnet-production.up.railway.app
Networkseip155:84532
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-25 no x402 terms 404 1223 ms

Example input (from the provider)

{
  "body": {
    "buyerProfile": {
      "buyer_roles": [
        "VP Operations",
        "Plant Manager"
      ],
      "exclusions": {
        "competitors": [
          "Lenze"
        ],
        "existing_customers": []
      },
      "sells": "industrial motion-control retrofit kits",
      "target_industries": [
        "industrial automation",
        "packaging machinery"
      ],
      "target_regions": [
        "Germany",
        "Netherlands",
        "Nordics"
      ],
      "target_size": "50-1000 employees"
    },
    "leads": [
      {
        "company": "Acme Robotics GmbH",
        "contact": {
          "name": "A. Meyer",
          "title": "VP Operations"
        },
        "country": "Germany",
        "headcount": 180,
        "id": "l1",
        "industry": "industrial automation",
        "notes": "job board shows 3 open automation engineer roles"
      }
    ]
  },
  "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": {
          "properties": {
            "buyerProfile": {
              "description": "Who you sell to. All fields optional, more detail means sharper scoring.",
              "properties": {
                "buyer_roles": {
                  "items": {
                    "type": "string"
                  },
                  "type": "array"
                },
                "buying_triggers": {
                  "items": {
                    "type": "string"
                  },
                  "type": "array"
                },
                "exclusions": {
                  "properties": {
                    "blocked_domains": {
                      "items": {
                        "type": "string"
                      },
                      "type": "array"
                    },
                    "competitors": {
                      "items": {
                        "type": "string"
                      },
                      "type": "array"
                    },
                    "existing_customers": {
                      "items": {
                        "type": "string"
                      },
                      "type": "array"
                    }
                  },
                  "type": "object"
                },
                "sells": {
                  "type": "string"
                },
                "target_industries": {
                  "items": {
                    "type": "string"
                  },
                  "type": "array"
                },
                "target_regions": {
                  "items": {
                    "type": "string"
                  },
                  "type": "array"
                },
                "target_size": {
                  "type": "string"
                }
              },
              "type": "object"
            },
            "leads": {
              "description": "Company or contact records, any shape.",
              "items": {
                "type": "object"
              },
              "maxItems": 25,
              "minItems": 1,
              "type": "array"
            }
          },
          "required": [
            "leads",
            "buyerProfile"
          ]
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "meta": {
              "properties": {
                "bundle": {
                  "type": "string"
                },
                "bundle_version": {
                  "type": "string"
                },
                "elapsed_ms": {
                  "type": "integer"
                },
                "engine": {
                  "type": "string"
                },
                "failures": {
                  "type": "integer"
                },
                "items": {
                  "type": "integer"
                },
                "model_cost_usd": {
                  "description": "What the call cost the server in model tokens. Published so you can see the markup you are paying.",
                  "type": "number"
                },
                "questions_sha256": {
                  "description": "Hash of the exact question wording used, so a result is reproducible.",
                  "type": "string"
                }
              },
              "type": "object"
            },
            "results": {
              "items": {
                "properties": {
                  "confidence": {
                    "enum": [
                      "high",
                      "medium",
                      "low"
                    ],
                    "type": "string"
                  },
                  "error": {
                    "description": "Present only when this one item could not be judged. Its verdict is then the safest rung, never a discard.",
                    "type": "string"
                  },
                  "id": {
                    "description": "The record's id field, or its index.",
                    "type": "string"
                  },
                  "rationale": {
                    "description": "The per-signal probabilities behind it.",
                    "type": "string"
                  },
                  "reason": {
                    "description": "A single label explaining the verdict.",
                    "type": "string"
                  },
                  "rules_applied": {
                    "description": "Which deterministic safety gates fired.",
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  },
                  "score": {
                    "description": "0-10.",
                    "type": "number"
                  },
                  "verdict": {
                    "description": "One rung of the ladder for this operation.",
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "type": "array"
            }
          },
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object

This page as JSON