AgentMessage
Lookups

Get a lookup by id

GET
/v1/lookup/{id}

Retrieve a single lookup by its id. A lookup that belongs to another organization returns 404 NOT_FOUND.

Lookup results are retained for 90 days. After that, the lookup still exists but its result is null and result_redacted_at is populated.

Requires the lookups:read scope.

AuthorizationBearer <token>

Authenticate by sending your API key as a bearer token: Authorization: Bearer am_live_.... Every request is automatically scoped to the organization that owns the key and to the scopes granted to that key.

In: header

Path Parameters

id*string
Formatuuid

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/lookup/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{
  "success": true,
  "data": {
    "id": "0190a1b2-c3d4-e5f6-a7b8-c9d0e1f2a3b4",
    "phone_number": "+15551234567",
    "lookup_type": "advanced",
    "status": "complete",
    "result": {
      "line_type": "MOBILE",
      "messaging_provider": "T-Mobile USA, Inc.",
      "voice_provider": "T-Mobile USA, Inc.",
      "country_code": "USA"
    },
    "result_redacted_at": null,
    "error_code": null,
    "error_message": null,
    "requested_at": "2026-04-30T15:23:01Z",
    "completed_at": "2026-04-30T15:23:01.847Z",
    "cost_cents": 2
  }
}
{
  "success": false,
  "error": {
    "code": "VALIDATION_FAILED",
    "message": "validation failed",
    "request_id": "01JTBQH2FZ8K1RXC0WJ4Z9P3VM",
    "details": {
      "to": "must be E.164",
      "body": "must be 1..1600 chars"
    }
  }
}
{
  "success": false,
  "error": {
    "code": "UNAUTHORIZED",
    "message": "authentication failed",
    "request_id": "01JTBQH2FZ8K1RXC0WJ4Z9P3VM"
  }
}
{
  "success": false,
  "error": {
    "code": "FORBIDDEN",
    "message": "missing required scope",
    "request_id": "01JTBQH2FZ8K1RXC0WJ4Z9P3VM"
  }
}
{
  "success": false,
  "error": {
    "code": "NOT_FOUND",
    "message": "not found",
    "request_id": "01JTBQH2FZ8K1RXC0WJ4Z9P3VM"
  }
}