ToolAssay

Worldwide forward geocoding for agents

Worldwide forward geocoding for agents. Convert an address, landmark, city, postcode, or place name into latitude and longitude with normalized address components and confidence metadata.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
56 msmedian answer time
$0.002listed price per call
$0.002price 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://sat.ipintel.ai/address-to-coordinates

CategoryEverything else
Provider hostsat.ipintel.ai
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days9 from 7 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.002 56 ms

Example input (from the provider)

{
  "body": {
    "address": "Eiffel Tower, Paris, France",
    "country_code": "fr",
    "language": "en",
    "limit": 1
  },
  "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": {
            "address": {
              "description": "Free-form place or postal address.",
              "maxLength": 500,
              "minLength": 3,
              "type": "string"
            },
            "country_code": {
              "description": "Optional ISO 3166-1 alpha-2 country filter.",
              "maxLength": 2,
              "minLength": 2,
              "type": "string"
            },
            "language": {
              "description": "Preferred response language, for example en or es.",
              "maxLength": 12,
              "minLength": 2,
              "type": "string"
            },
            "limit": {
              "default": 1,
              "maximum": 5,
              "minimum": 1,
              "type": "integer"
            }
          },
          "required": [
            "address"
          ],
          "type": "object"
        },
        "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": {
          "additionalProperties": true,
          "properties": {
            "cached": {
              "type": "boolean"
            },
            "match_count": {
              "minimum": 0,
              "type": "integer"
            },
            "ok": {
              "const": true,
              "type": "boolean"
            },
            "results": {
              "items": {
                "additionalProperties": true,
                "properties": {
                  "confidence": {
                    "type": "number"
                  },
                  "country_code": {
                    "type": "string"
                  },
                  "formatted_address": {
                    "type": "string"
                  },
                  "lat": {
                    "type": "number"
                  },
                  "lon": {
                    "type": "number"
                  }
                },
                "required": [
                  "lat",
                  "lon"
                ],
                "type": "object"
              },
              "type": "array"
            },
            "tool": {
              "const": "address-to-coordinates",
              "type": "string"
            }
          },
          "required": [
            "ok",
            "tool",
            "match_count",
            "results"
          ],
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON