Skip to main content

ip_to_maid

Resolve an IP address to mobile advertising IDs (MAIDs) associated with it.

Updated this week

Parameters

Field

Type

Required

Description

params.name

string

βœ“

Must be "ip_to_maid"

params.arguments.ip_address

string

βœ“

IPv4 or IPv6 address

params.arguments.fingerprint

string

β€”

Pre-computed fingerprint (overrides IP fingerprinting)

Request

curl --request POST \
--url https://app.moltsets.com/mcp/ \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "ip_to_maid",
"arguments": {
"ip_address": "8.8.8.8"
}
}
}'

Response

{
"jsonrpc": "2.0",
"id": null,
"result": {
"content": [
{
"type": "text",
"text": "{\"results\":[{\"device_id\":\"7e89542e-de65-4c94-bc0d-76d02d2XXXXX\",\"device_type\":\"AAID\"}]}"
}
],
"isError": false
}
}
Did this answer your question?