Sample Response
Successful API Responses will return a 200 status code and a json.
curl --request POST \
--url https://api.deepinfo.com/v1/tools/ip-extractor \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'apikey: asd' \
--data '{"text":"test1\\n1.2.3.4test2\\n4.5.6.7\\ntest3"}'
{
"ips":[
"1.2.3.4"
"4.5.6.7"
]
}
Updated over 3 years ago