GET
/
devices
/
{macAddress}
/
ip-history
curl --request GET \
  --url https://api.altostrat.io/arp/devices/{macAddress}/ip-history \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "device_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "ip_address": "192.168.1.100",
    "interface": "ether2",
    "hostname": "my-laptop-old.lan",
    "is_current": true,
    "first_seen_at": "2025-04-01T10:00:00Z",
    "last_seen_at": "2025-04-05T15:30:00Z",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Enter the Bearer token (obtained via authentication or provided internally).

Path Parameters

macAddress
string
required

MAC address of the device

Query Parameters

current_only
boolean

Return only the current IP record.

Response

200
application/json

A list of IP history records.

The response is of type object[].