{"id":431,"date":"2026-04-16T22:32:34","date_gmt":"2026-04-16T13:32:34","guid":{"rendered":"https:\/\/tool-laboratory.com\/?p=431"},"modified":"2026-04-16T22:39:41","modified_gmt":"2026-04-16T13:39:41","slug":"what-is-my-ip","status":"publish","type":"post","link":"https:\/\/tool-laboratory.com\/en\/what-is-my-ip\/","title":{"rendered":"IPv4\u30fbIPv6\u5bfe\u5fdc IP\u30a2\u30c9\u30ec\u30b9\u78ba\u8a8d\u30c4\u30fc\u30eb(What is My IP Address Tool)\uff5c\u4eca\u306eIP\u30fb\u56fd\u30fb\u5730\u57df\u3092\u4e00\u77ac\u3067\u8868\u793a"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"ja\">\n<head>\n<meta charset=\"UTF-8\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n<title>IP\u78ba\u8a8d\u30c4\u30fc\u30eb<\/title>\n<style>\nbody{\n  font-family: Arial, sans-serif;\n  background:#f3f4f6;\n  margin:0;\n}\n.container{\n  max-width:600px;\n  margin:auto;\n  padding:16px;\n}\nh1{\n  font-size:20px;\n}\n.box{\n  background:#fff;\n  padding:14px;\n  border-radius:10px;\n  margin-top:10px;\n  border:1px solid #ddd;\n}\n.label{\n  font-size:13px;\n  color:#666;\n}\n.value{\n  font-size:20px;\n  font-weight:bold;\n  word-break:break-all;\n}\nbutton{\n  width:100%;\n  padding:14px;\n  margin-top:10px;\n  border:none;\n  border-radius:8px;\n  font-size:15px;\n}\n.copy{background:#22c55e;color:#fff;}\n.reload{background:#3b82f6;color:#fff;}\n.status{\n  font-size:12px;\n  margin-top:5px;\n  color:#888;\n}\n.toast{\n  position:fixed;\n  bottom:20px;\n  left:50%;\n  transform:translateX(-50%);\n  background:#111;\n  color:#fff;\n  padding:10px 16px;\n  border-radius:20px;\n  display:none;\n}\n<\/style>\n<\/head>\n<body>\n\n<div class=\"container\">\n  <h1>IP\u30a2\u30c9\u30ec\u30b9\u78ba\u8a8d\uff08IPv4 \/ IPv6\uff09<\/h1>\n\n  <div class=\"box\">\n    <div class=\"label\">IPv4<\/div>\n    <div class=\"value\" id=\"ipv4\">\u53d6\u5f97\u4e2d&#8230;<\/div>\n  <\/div>\n\n  <div class=\"box\">\n    <div class=\"label\">IPv6<\/div>\n    <div class=\"value\" id=\"ipv6\">\u53d6\u5f97\u4e2d&#8230;<\/div>\n  <\/div>\n\n  <div class=\"box\" id=\"info\">\u5730\u57df\u60c5\u5831\u53d6\u5f97\u4e2d&#8230;<\/div>\n\n  <button class=\"copy\" onclick=\"copyIP()\">IP\u3092\u30b3\u30d4\u30fc<\/button>\n  <button class=\"reload\" onclick=\"getAll()\">\u518d\u53d6\u5f97<\/button>\n<\/div>\n\n<div class=\"toast\" id=\"toast\">\u30b3\u30d4\u30fc\u3057\u307e\u3057\u305f<\/div>\n\n<script>\nfunction showToast(){\n  const t=document.getElementById(\"toast\");\n  t.style.display=\"block\";\n  setTimeout(()=>t.style.display=\"none\",1500);\n}\n\nasync function fetchWithFallback(urls){\n  for(const url of urls){\n    try{\n      const res=await fetch(url);\n      const data=await res.json();\n      if(data.ip) return data.ip;\n    }catch(e){}\n  }\n  return null;\n}\n\nasync function getIPv4(){\n  const ip = await fetchWithFallback([\n    \"https:\/\/api.ipify.org?format=json\",\n    \"https:\/\/ipv4.icanhazip.com\/?format=json\"\n  ]);\n  document.getElementById(\"ipv4\").textContent = ip || \"\u53d6\u5f97\u4e0d\u53ef\";\n}\n\nasync function getIPv6(){\n  const ip = await fetchWithFallback([\n    \"https:\/\/api64.ipify.org?format=json\"\n  ]);\n  if(ip && ip.includes(\":\")){\n    document.getElementById(\"ipv6\").textContent = ip;\n  }else{\n    document.getElementById(\"ipv6\").textContent = \"\u672a\u5bfe\u5fdc\";\n  }\n}\n\nasync function getInfo(){\n  try{\n    const res=await fetch(\"https:\/\/ipapi.co\/json\/\");\n    const d=await res.json();\n    document.getElementById(\"info\").textContent =\n      \"\u56fd: \"+d.country_name+\" \/ \u5730\u57df: \"+d.region;\n  }catch{\n    document.getElementById(\"info\").textContent = \"\u5730\u57df\u60c5\u5831\u53d6\u5f97\u4e0d\u53ef\";\n  }\n}\n\nasync function getAll(){\n  document.getElementById(\"ipv4\").textContent=\"\u53d6\u5f97\u4e2d...\";\n  document.getElementById(\"ipv6\").textContent=\"\u53d6\u5f97\u4e2d...\";\n  document.getElementById(\"info\").textContent=\"\u53d6\u5f97\u4e2d...\";\n\n  await Promise.all([\n    getIPv4(),\n    getIPv6(),\n    getInfo()\n  ]);\n}\n\nfunction copyIP(){\n  const v4=document.getElementById(\"ipv4\").textContent;\n  const v6=document.getElementById(\"ipv6\").textContent;\n  navigator.clipboard.writeText(\"IPv4: \"+v4+\"\\nIPv6: \"+v6);\n  showToast();\n}\n\ngetAll();\n<\/script>\n\n<\/body>\n<\/html>\n\n\n\n<p>IP\u30a2\u30c9\u30ec\u30b9\u3092\u78ba\u8a8d\u3057\u305f\u3044\u3068\u304d\u3001\u300c\u3069\u3053\u3067\u898b\u308c\u3070\u3044\u3044\u306e\uff1f\u300d\u3068\u8ff7\u3063\u305f\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093\u304b\uff1f<\/p>\n\n\n\n<p>\u3053\u306e\u30da\u30fc\u30b8\u3067\u306f\u3001\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3060\u3051\u3067\u73fe\u5728\u306eIP\u30a2\u30c9\u30ec\u30b9\u3092\u7c21\u5358\u306b\u78ba\u8a8d\u3067\u304d\u307e\u3059\u3002<br>\u3055\u3089\u306b\u3001\u5730\u57df\u60c5\u5831\u3082\u540c\u6642\u306b\u8868\u793a\u3055\u308c\u308b\u305f\u3081\u3001\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u306e\u72b6\u614b\u3092\u3059\u3050\u306b\u628a\u63e1\u3067\u304d\u307e\u3059\u3002<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>\u25a0 \u7d50\u8ad6<\/p>\n\n\n\n<p>IP\u30a2\u30c9\u30ec\u30b9\u306e\u78ba\u8a8d\u306f\u3001\u5c02\u7528\u30c4\u30fc\u30eb\u3092\u4f7f\u3046\u306e\u304c\u6700\u3082\u65e9\u304f\u3066\u6b63\u78ba\u3067\u3059\u3002<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>\u25a0 \u7406\u7531<\/p>\n\n\n\n<p>\u901a\u5e38\u3001IP\u30a2\u30c9\u30ec\u30b9\u3092\u78ba\u8a8d\u3059\u308b\u306b\u306f\u30d1\u30bd\u30b3\u30f3\u3084\u30b9\u30de\u30db\u306e\u8a2d\u5b9a\u753b\u9762\u3092\u958b\u304f\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002<br>\u3057\u304b\u3057\u3001\u3053\u306e\u65b9\u6cd5\u306f\u624b\u9806\u304c\u591a\u304f\u3001\u6163\u308c\u3066\u3044\u306a\u3044\u3068\u5206\u304b\u308a\u3065\u3089\u3044\u306e\u304c\u96e3\u70b9\u3067\u3059\u3002<\/p>\n\n\n\n<p>\u4e00\u65b9\u3067\u3001IP\u78ba\u8a8d\u30c4\u30fc\u30eb\u3092\u4f7f\u3048\u3070\u30da\u30fc\u30b8\u3092\u958b\u304f\u3060\u3051\u3067\u81ea\u52d5\u7684\u306b\u8868\u793a\u3055\u308c\u307e\u3059\u3002<br>\u305d\u306e\u305f\u3081\u3001\u521d\u5fc3\u8005\u3067\u3082\u8ff7\u308f\u305a\u7c21\u5358\u306b\u78ba\u8a8d\u3067\u304d\u308b\u306e\u304c\u5927\u304d\u306a\u30e1\u30ea\u30c3\u30c8\u3067\u3059\u3002<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>\u25a0 \u3053\u306e\u30c4\u30fc\u30eb\u3067\u3067\u304d\u308b\u3053\u3068<\/p>\n\n\n\n<p>\u30fb\u73fe\u5728\u306eIP\u30a2\u30c9\u30ec\u30b9\u306e\u78ba\u8a8d<br>\u30fb\u63a5\u7d9a\u3057\u3066\u3044\u308b\u56fd\u3084\u5730\u57df\u306e\u8868\u793a<br>\u30fb\u30ef\u30f3\u30af\u30ea\u30c3\u30af\u3067IP\u30a2\u30c9\u30ec\u30b9\u3092\u30b3\u30d4\u30fc<\/p>\n\n\n\n<p>\u4f59\u8a08\u306a\u6a5f\u80fd\u3092\u7701\u3044\u3066\u3044\u308b\u305f\u3081\u3001\u5fc5\u8981\u306a\u60c5\u5831\u3060\u3051\u3092\u3059\u3050\u306b\u78ba\u8a8d\u3067\u304d\u307e\u3059\u3002<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>\u25a0 \u4f7f\u3044\u65b9<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>\u3053\u306e\u30da\u30fc\u30b8\u3092\u958b\u304f<\/li>\n\n\n\n<li>\u81ea\u52d5\u3067IP\u30a2\u30c9\u30ec\u30b9\u304c\u8868\u793a\u3055\u308c\u308b<\/li>\n\n\n\n<li>\u5fc5\u8981\u306b\u5fdc\u3058\u3066\u30b3\u30d4\u30fc\u3059\u308b<\/li>\n<\/ol>\n\n\n\n<p>\u305f\u3063\u305f\u3053\u308c\u3060\u3051\u3067\u5b8c\u4e86\u3067\u3059\u3002<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>\u25a0 IP\u30a2\u30c9\u30ec\u30b9\u3068\u306f\uff1f<\/p>\n\n\n\n<p>IP\u30a2\u30c9\u30ec\u30b9\u3068\u306f\u3001\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u4e0a\u3067\u306e\u300c\u4f4f\u6240\u300d\u306e\u3088\u3046\u306a\u3082\u306e\u3067\u3059\u3002<br>\u3059\u3079\u3066\u306e\u901a\u4fe1\u6a5f\u5668\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u3066\u304a\u308a\u3001\u901a\u4fe1\u306e\u8b58\u5225\u306b\u4f7f\u308f\u308c\u307e\u3059\u3002<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>\u25a0 \u3053\u3093\u306a\u3068\u304d\u306b\u4fbf\u5229<\/p>\n\n\n\n<p>\u30fb\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u8a2d\u5b9a\u306e\u78ba\u8a8d<br>\u30fbVPN\u306e\u63a5\u7d9a\u30c1\u30a7\u30c3\u30af<br>\u30fb\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u306e\u78ba\u8a8d<br>\u30fb\u30b5\u30fc\u30d0\u30fc\u63a5\u7d9a\u30c6\u30b9\u30c8<\/p>\n\n\n\n<p>\u65e5\u5e38\u7684\u306b\u4f7f\u3046\u5834\u9762\u304c\u591a\u3044\u305f\u3081\u3001\u30d6\u30c3\u30af\u30de\u30fc\u30af\u3057\u3066\u304a\u304f\u3068\u4fbf\u5229\u3067\u3059\u3002<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>\u25a0 \u307e\u3068\u3081<\/p>\n\n\n\n<p>IP\u30a2\u30c9\u30ec\u30b9\u306e\u78ba\u8a8d\u306f\u96e3\u3057\u305d\u3046\u306b\u898b\u3048\u3066\u3001\u5b9f\u306f\u3068\u3066\u3082\u7c21\u5358\u3067\u3059\u3002<br>\u30c4\u30fc\u30eb\u3092\u4f7f\u3048\u3070\u4e00\u77ac\u3067\u78ba\u8a8d\u3067\u304d\u308b\u305f\u3081\u3001\u6642\u9593\u3092\u7121\u99c4\u306b\u305b\u305a\u52b9\u7387\u7684\u306b\u4f5c\u696d\u3067\u304d\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u305c\u3072\u3053\u306e\u30c4\u30fc\u30eb\u3092\u6d3b\u7528\u3057\u3066\u3001\u5feb\u9069\u306b\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u3092\u5229\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>IP\u78ba\u8a8d\u30c4\u30fc\u30eb IP\u30a2\u30c9\u30ec\u30b9\u78ba\u8a8d\uff08IPv4 \/ IPv6\uff09 IPv4 \u53d6\u5f97\u4e2d&#8230; IPv6 \u53d6\u5f97\u4e2d&#8230; \u5730\u57df\u60c5\u5831\u53d6\u5f97\u4e2d&#8230; IP\u3092\u30b3\u30d4\u30fc \u518d\u53d6\u5f97 \u30b3\u30d4\u30fc\u3057\u307e\u3057\u305f IP\u30a2\u30c9\u30ec\u30b9\u3092\u78ba\u8a8d\u3057\u305f\u3044\u3068\u304d &#8230; <a title=\"IPv4\u30fbIPv6\u5bfe\u5fdc IP\u30a2\u30c9\u30ec\u30b9\u78ba\u8a8d\u30c4\u30fc\u30eb(What is My IP Address Tool)\uff5c\u4eca\u306eIP\u30fb\u56fd\u30fb\u5730\u57df\u3092\u4e00\u77ac\u3067\u8868\u793a\" class=\"read-more\" href=\"https:\/\/tool-laboratory.com\/en\/what-is-my-ip\/\" aria-label=\"Read more about IPv4\u30fbIPv6\u5bfe\u5fdc IP\u30a2\u30c9\u30ec\u30b9\u78ba\u8a8d\u30c4\u30fc\u30eb(What is My IP Address Tool)\uff5c\u4eca\u306eIP\u30fb\u56fd\u30fb\u5730\u57df\u3092\u4e00\u77ac\u3067\u8868\u793a\">Read more<\/a><\/p>","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[8],"tags":[],"class_list":["post-431","post","type-post","status-publish","format-standard","hentry","category-it-tools"],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/posts\/431","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/comments?post=431"}],"version-history":[{"count":5,"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/posts\/431\/revisions"}],"predecessor-version":[{"id":438,"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/posts\/431\/revisions\/438"}],"wp:attachment":[{"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/media?parent=431"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/categories?post=431"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/tags?post=431"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}