Skip to main content
POST
/
ip_to_company
IP to Company
curl --request POST \
  --url https://api.moltsets.com/api/v1/tools/ip_to_company \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ip_address": "8.8.8.8"
}
'
{
  "results": {
    "companies": [
      {
        "domain": "acme.com",
        "percentage": "1.0"
      }
    ]
  },
  "status": "ok",
  "metadata": {
    "tokens_charged": 1,
    "tokens_remaining": "unlimited",
    "daily_results_remaining": 9876
  }
}

Authorizations

Authorization
string
header
required

Pass your API key as a Bearer token. Keys follow the format ms_XXXXXXXXXXX.

Body

application/json
ip_address
string
required

IPv4 address to resolve.

Example:

"8.8.8.8"

Response

Success