Creates a five-minute inbound SMS lease through a configured licensed provider,
Creates a five-minute inbound SMS lease through a configured licensed provider, polls received messages, and releases the number upstream on cancellation, expiry or failed x402 settlement. Twilio is supported directly; an HTTPS bearer-token lease provider can also implement the documented generic contract. Messages and lease metadata are removed after expiry.
Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.006listed 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://ident.halowerk.com/v1/sms-receive
| Category | Market data |
|---|---|
| Provider host | ident.halowerk.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"action": "lease",
"country": "DE",
"mode": "sandbox",
"sandbox_otp": "123456",
"service": "integration-test"
},
"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": {
"action": {
"enum": [
"lease",
"poll",
"cancel"
],
"type": "string"
},
"country": {
"default": "DE",
"pattern": "^[A-Z]{2}$",
"type": "string"
},
"lease_id": {
"maxLength": 80,
"minLength": 10,
"type": "string"
},
"mode": {
"default": "live",
"enum": [
"live",
"sandbox"
],
"type": "string"
},
"sandbox_otp": {
"description": "Optional synthetic OTP returned only by a sandbox lease.",
"pattern": "^\\d{4,8}$",
"type": "string"
},
"service": {
"description": "Purpose label forwarded to the configured provider; never used to bypass provider restrictions.",
"maxLength": 80,
"minLength": 2,
"type": "string"
},
"terms_confirmed": {
"description": "Required for a live lease: confirms authorization and compliance with the third party and provider terms.",
"type": "boolean"
}
},
"required": [
"action"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}