-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
130 lines (73 loc) · 3.85 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html>
<head>
<title>ipapi – ipapi.co - IP Location for the pro !</title>
<meta charset="utf-8" />
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0'>
<meta name="description" content="ipapi.co - IP Location for the pro !">
<meta property="og:description" content="ipapi.co - IP Location for the pro !" />
<meta name="author" content="ipapi" />
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet" type="text/css" href="/style.css" />
<link rel="alternate" type="application/rss+xml" title="ipapi - ipapi.co - IP Location for the pro !" href="/feed.xml" />
</head>
<body>
<div class="wrapper-masthead">
<div class="container">
<header class="masthead clearfix">
<a href="https://ipapi.co/" class="site-avatar"><img src="https://ipapi.co/static/images/icon/icon-48.png" /></a>
<div class="site-info">
<h1 class="site-name"><a href="https://ipapi.co/">ipapi</a></h1>
<p class="site-description">ipapi.co - IP Location for the pro !</p>
</div>
<nav>
<a href="/">Blog</a>
<a href="https://ipapi.co/contact/">Contact</a>
</nav>
</header>
</div>
</div>
<div id="main" role="main" class="container">
<div class="posts">
<article class="post">
<h1><a href="/ip_location_go/">IP Location in Go</a></h1>
<div class="entry">
<p>Find the location of an IP address in Go programming language (golang) !</p>
</div>
<a href="/ip_location_go/" class="read-more">Read More</a>
</article>
<article class="post">
<h1><a href="/ip_lookup_php/">IP Lookup in PHP</a></h1>
<div class="entry">
<p>A collection of PHP code snippets to get real time information (like location, currency, timezone etc.) for an IP address.
<br /><br /></p>
<h4 id="-find-location-of-ip-address-in-php">§ <a href="#-find-location-of-ip-address-in-php">Find location of IP address in PHP</a></h4>
<p><span class="code-description">
Get the geolocation (geographic location) of an IP address with an API. The example below uses <code class="highlighter-rouge">json</code> as the output format. To switch to a different format, replace <code class="highlighter-rouge">json</code> in the URL path below with other supported formats like <code class="highlighter-rouge">csv</code>, <code class="highlighter-rouge">xml</code>, <code class="highlighter-rouge">yaml</code> & <code class="highlighter-rouge">jsonp</code>.
</span></p>
</div>
<a href="/ip_lookup_php/" class="read-more">Read More</a>
</article>
<article class="post">
<h1><a href="/locate-ip-address-on-a-map">Locate IP addresses on a Map</a></h1>
<div class="entry">
<p>The bulk IP address location tool lets you lookup multiple IPs and view their location in a tabular format. Additionally, you can visualize the geographic distribution of the location on a map (currently Google Maps is supported).</p>
</div>
<a href="/locate-ip-address-on-a-map" class="read-more">Read More</a>
</article>
</div>
</div>
<div class="wrapper-footer">
<div class="container">
<footer class="footer">
<a href="https://github.com/ipapi-co/ipapi"><i class="svg-icon github"></i></a>
<a href="https://www.twitter.com/ipapi_co"><i class="svg-icon twitter"></i></a>
</footer>
</div>
</div>
</body>
</html>