ToolAssay

Resolve a user's natural-language place reference

Resolve a user's natural-language place reference - "the cafe near the bookstore", "my hotel", "here" - into exactly one verified coordinate with an evidence trail. Coverage: the contiguous United States (beta). This payment tops up a prepaid USDC balance: any amount at or above one turn's price ($0.005); the first 50 turns per day are free with a wallet sign-in - see docs.kviria.com/api/agent.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
364 msmedian answer time
$1.00listed price per call
$1.00price 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://api.kviria.com/v1/agent

CategoryMarket data
Provider hostapi.kviria.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$1.00 364 ms

Example input (from the provider)

{
  "body": {
    "anchor": {
      "lat": 37.788,
      "lng": -122.4074
    },
    "transcript": "the cafe near the bookstore"
  },
  "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": {
            "anchor": {
              "description": "The user's real position.",
              "properties": {
                "lat": {
                  "type": "number"
                },
                "lng": {
                  "type": "number"
                }
              },
              "required": [
                "lat",
                "lng"
              ],
              "type": "object"
            },
            "intent": {
              "description": "The structured meaning of the user's words - send either this or transcript.",
              "properties": {
                "action": {
                  "description": "find | search | neighbors | near | across",
                  "type": "string"
                },
                "categoryAny": {
                  "description": "Exact category labels the user wants.",
                  "items": {
                    "type": "string"
                  },
                  "type": "array"
                }
              },
              "type": "object"
            },
            "transcript": {
              "description": "The user's raw message (voice transcript or text), as spoken.",
              "type": "string"
            }
          },
          "required": [
            "anchor"
          ],
          "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"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "evidence": {
              "type": "array"
            },
            "meta": {
              "type": "object"
            },
            "turn": {
              "type": "object"
            }
          },
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON