Click here to Skip to main content
15,886,639 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
# With token query parameter

$ curl -X GET https://api.ipfinder.io/v1/?token=$TOKEN 

# With POST application/json

$ curl -d '{"token":"$TOKEN"}' -H "Content-Type: application/json" -X POST https://api.ipfinder.io/v1/

# With POST application/x-www-form-urlencoded

$ curl -d "token=$TOKEN" -H "Content-Type: application/x-www-form-urlencoded" -X POST https://api.ipfinder.io/v1/

# With Basic Auth
$ curl -u $TOKEN: https://api.ipfinder.io/v1/

# With X-Authorization token
$ curl -H 'X-Authorization: $TOKEN' https://api.ipfinder.io/v1/

Geolocation API developer Documentation v1 - IPFINDER[^]

What I have tried:

this API and method not work for me
what should i do it's free and i add it in my application
IP Finder location API - Free IP Geolocation API[^]
Posted
Updated 16-Jun-19 0:25am

1 solution

I wouldn't bother: it's not a lot of use.
See here for why: Using IP based Geolocation - and why it's pretty much useless.[^] - it includes code to do it, (in C#, but it's pretty obvious code) if you decide that it's worth the effort ...
 
Share this answer
 
Comments
Richard MacCutchan 16-Jun-19 11:42am    
That article shows: "There is an auto-saved draft version. Would you like to view or edit it?".

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900