{"id":5167,"date":"2026-06-18T14:21:16","date_gmt":"2026-06-18T14:21:16","guid":{"rendered":"https:\/\/rimanagency.com\/nap-citation-checker-find-name-address-phone-inconsistencies-online\/"},"modified":"2026-06-18T14:21:16","modified_gmt":"2026-06-18T14:21:16","slug":"nap-citation-checker-find-name-address-phone-inconsistencies-online","status":"publish","type":"page","link":"https:\/\/rimanagency.com\/fr\/nap-citation-checker-find-name-address-phone-inconsistencies-online\/","title":{"rendered":"V\u00e9rificateur de citations NAP \u2014 Trouvez les incoh\u00e9rences de nom, d&#039;adresse et de num\u00e9ro de t\u00e9l\u00e9phone en ligne"},"content":{"rendered":"<style>.rt-h{background:linear-gradient(135deg,#f1f5e8,#e8efdb);border-radius:14px;padding:32px;margin:0 0 24px;text-align:center}.rt-h h1{margin:0 0 10px;font-size:28px;color:#4a6320}.rt-g{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin:0 0 24px}.rt-f,.rt-o{background:#fff;border:1px solid #e0e6d8;border-radius:10px;padding:22px}.rt-f h3,.rt-o h3{margin:0 0 14px;color:#4a6320;font-size:18px}.rt-f label{display:block;font-size:13px;color:#516048;font-weight:600;margin:10px 0 6px}.rt-f input,.rt-f select,.rt-f textarea{width:100%;padding:9px;border:1px solid #d4dac6;border-radius:6px;font-size:14px;box-sizing:border-box;font-family:inherit}.rt-btn{background:#719430;color:#fff;border:none;padding:11px 20px;border-radius:6px;font-weight:700;cursor:pointer;width:100%;margin-top:14px;font-size:15px}.rt-btn:hover{background:#4a6320}.rt-cta{background:linear-gradient(135deg,#719430,#4a6320);color:#fff;border-radius:14px;padding:32px;text-align:center;margin:30px 0}.rt-cta h3{margin:0 0 6px;color:#fff}.rt-cta a{background:#fff;color:#4a6320;padding:12px 28px;border-radius:6px;font-weight:700;text-decoration:none;display:inline-block;margin-top:14px}.rt-o-big{font-size:36px;font-weight:800;color:#719430;text-align:center;margin:6px 0;word-break:break-word}@media(max-width:768px){.rt-g{grid-template-columns:1fr}}<\/style>\n<div class=\"rt-h\">\n<h1>NAP Citation Consistency Checker<\/h1>\n<p>Paste your business\\u2019s Name, Address, and Phone (NAP) from multiple directory listings and instantly spot inconsistencies \u2014 wrong suite numbers, abbreviated streets, missing area codes, phone format differences. NAP consistency is one of the top local SEO ranking factors.<\/p>\n<\/div>\n<div class=\"rt-g\">\n<div class=\"rt-f\">\n<h3>NAP Listings<\/h3>\n<p><label>Paste NAP entries (one per line, format: Name | Address | Phone)<\/label><textarea id=\"np-in\" rows=\"8\" placeholder=\"Riman Agency | 123 Main St, Suite 400, Montreal, QC H3A 1A1 | (514) 555-1234\nRiman Agency | 123 Main Street #400, Montreal, Quebec H3A1A1 | 514-555-1234\nRiman Inc | 123 Main, Mtl, QC | 514.555.1234\"><\/textarea><\/div>\n<div class=\"rt-o\">\n<h3>Consistency Audit<\/h3>\n<div id=\"np-out\" style=\"background:#fafafa;border:1px solid #e0e6d8;border-radius:8px;padding:14px;font-size:14px;min-height:80px;line-height:1.5\"><\/div>\n<\/div>\n<\/div>\n<p><script>function cNp(){var raw=document.getElementById(\"np-in\").value.trim();if(!raw){document.getElementById(\"np-out\").innerHTML=\"<i style=\\\"color:#888\\\">Paste NAP entries to check<\/i>\";return}var lines=raw.split(\"\\n\").filter(function(l){return l.trim()});if(lines.length<2){document.getElementById(\"np-out\").innerHTML=\"<i style=\\\"color:#888\\\">Enter at least 2 NAP entries to compare<\/i>\";return}var rows=lines.map(function(l){var parts=l.split(\"|\").map(function(p){return p.trim()});return{name:parts[0]||\"\",addr:parts[1]||\"\",phone:parts[2]||\"\"}});function normName(n){return n.toLowerCase().replace(\/\\b(inc|llc|ltd|corp|corporation|company|co|agency|group|services|consulting)\\b\/g,\"\").replace(\/[^a-z0-9]\/g,\"\")}function normPhone(p){return p.replace(\/[^0-9]\/g,\"\")}function normAddr(a){return a.toLowerCase().replace(\/\\b(street|st|avenue|ave|road|rd|boulevard|blvd|drive|dr|suite|ste|unit|apt|apartment)\\b\/g,\"\").replace(\/[^a-z0-9]\/g,\"\")}var nameSet={},phoneSet={},addrSet={};rows.forEach(function(r){nameSet[normName(r.name)]=(nameSet[normName(r.name)]||0)+1;phoneSet[normPhone(r.phone)]=(phoneSet[normPhone(r.phone)]||0)+1;addrSet[normAddr(r.addr)]=(addrSet[normAddr(r.addr)]||0)+1});var nUnique=Object.keys(nameSet).length;var pUnique=Object.keys(phoneSet).filter(function(k){return k.length>0}).length;var aUnique=Object.keys(addrSet).filter(function(k){return k.length>0}).length;function status(n,what){if(n===1)return {col:\"#719430\",ic:\"\u2713\",txt:\"All \"+what+\" match (good)\"};if(n===2)return {col:\"#d4a017\",ic:\"\u26a0\",txt:n+\" different \"+what+\" \u2014 minor variation\"};return {col:\"#c44\",ic:\"\u2716\",txt:n+\" different \"+what+\" \u2014 major NAP inconsistency\"}}var nameSt=status(nUnique,\"business names\");var phSt=status(pUnique,\"phone numbers\");var aSt=status(aUnique,\"addresses\");var html=\"<\/p>\n<div style=\\\"display:grid;gap:10px\\\">\";[[\"Name\",nameSt],[\"Phone\",phSt],[\"Address\",aSt]].forEach(function(s){html+=\"<\/p>\n<div style=\\\"background:#fff;border:1px solid #e0e6d8;border-radius:8px;padding:12px;display:flex;gap:10px;align-items:flex-start\\\">\n<div style=\\\"color:\"+s[1].col+\";font-weight:700;font-size:18px;width:24px;flex-shrink:0\\\">\"+s[1].ic+\"<\/div>\n<div><b style=\\\"color:#4a6320\\\">\"+s[0]+\"<\/b><\/p>\n<div style=\\\"font-size:12px;color:\"+s[1].col+\";font-weight:600;margin-top:2px\\\">\"+s[1].txt+\"<\/div>\n<\/div>\n<\/div>\n<p>\"});html+=\"<\/p><\/div>\n<p>\";html+=\"<\/p>\n<div style=\\\"margin-top:14px;background:#fff;border:1px solid #e0e6d8;border-radius:8px;padding:12px\\\">\n<div style=\\\"font-size:11px;color:#719430;font-weight:700;text-transform:uppercase;letter-spacing:.5px;margin-bottom:8px\\\">Per-listing breakdown<\/div>\n<p>\";rows.forEach(function(r,i){html+=\"<\/p>\n<div style=\\\"padding:8px 0;border-bottom:1px solid #f0f3e8;font-size:12px;font-family:Consolas,monospace\\\"><b>#\"+(i+1)+\"<\/b> \u2014 \"+r.name+\" | \"+r.addr+\" | \"+r.phone+\"<\/div>\n<p>\"});html+=\"<\/p><\/div>\n<p>\";document.getElementById(\"np-out\").innerHTML=html}document.getElementById(\"np-in\").addEventListener(\"input\",cNp);cNp();<\/script><\/p>\n<h2>How to use the NAP Citation Consistency Checker<\/h2>\n<p>Paste your business\\u2019s NAP information from each directory listing \u2014 Google Business Profile, Yelp, Bing Places, industry directories, your own website. Format: Name | Address | Phone (pipe-separated). The tool normalizes each field (ignoring case, punctuation, common abbreviations) and reports whether all entries match.<\/p>\n<h2>Why this tool matters<\/h2>\n<p>NAP consistency is one of the top 5 local SEO ranking factors. Google cross-references your business information across the web; differences in spelling, formatting, or details signal an unreliable business and hurt your local pack rankings. A 30-second consistency check before submitting new listings prevents months of cleanup.<\/p>\n<h2>Common use cases<\/h2>\n<ul>\n<li>Auditing existing local citations before a local SEO project<\/li>\n<li>Confirming consistency before adding new directory submissions<\/li>\n<li>Detecting after an address change which directories still show the old data<\/li>\n<li>Helping clients understand the importance of NAP consistency<\/li>\n<li>Quick sanity check during a brand or business name change<\/li>\n<li>Confirming a franchise location\\u2019s listings are all in sync<\/li>\n<\/ul>\n<h2>What counts as a &#8220;match&#8221;<\/h2>\n<p>Our tool normalizes case, punctuation, and common abbreviations (Street vs St, Suite vs Ste, Inc vs LLC). &#8220;Riman Agency&#8221; matches &#8220;riman agency&#8221; matches &#8220;RIMAN AGENCY&#8221;. &#8220;123 Main Street&#8221; matches &#8220;123 Main St&#8221;. This catches the differences Google itself ignores while flagging substantive ones (different suite numbers, different phone numbers).<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<p><strong>Should the phone number match exactly?<\/strong><br \/>Format does not matter (Google ignores parentheses, dashes, dots). Digits do. &#8220;(514) 555-1234&#8221; matches &#8220;514.555.1234&#8221; but not &#8220;514-555-1235&#8221;.<\/p>\n<p><strong>What about abbreviation inconsistencies?<\/strong><br \/>Our normalizer ignores Street\/St, Suite\/Ste, Avenue\/Ave, etc. For Google purposes these are equivalent. Two different phone numbers or two different street numbers are real inconsistencies.<\/p>\n<p><strong>Do I need every directory to match my Google Business Profile?<\/strong><br \/>Yes \u2014 that is the spirit of NAP consistency. Pick the canonical form from Google Business Profile and standardize everywhere else.<\/p>\n<p><strong>Should I include my website in the check?<\/strong><br \/>Yes \u2014 your own website is one of the most important &#8220;citations.&#8221; Inconsistencies between your website footer and Google Business Profile are common and damaging.<\/p>\n<div class=\"rt-cta\">\n<h3>Need a full local SEO audit + citation cleanup program?<\/h3>\n<p style=\"margin:0;opacity:.95\">Riman Agency runs local SEO programs that drive map-pack rankings.<\/p>\n<p><a href=\"\/contact\/\">Book a Local SEO Audit<\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>NAP Citation Consistency Checker Paste your business\\u2019s Name, Address, and Phone (NAP) from multiple directory listings and instantly spot inconsistencies \u2014 wrong suite numbers, abbreviated streets, missing area codes, phone format differences. NAP consistency is one of the top local SEO ranking factors. NAP Listings Paste NAP entries (one per line, format: Name | Address [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-5167","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>NAP Citation Checker \u2014 Find Name, Address, Phone Inconsistencies Online - Riman Agency<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/rimanagency.com\/fr\/nap-citation-checker-find-name-address-phone-inconsistencies-online\/\" \/>\n<meta property=\"og:locale\" content=\"fr_CA\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"NAP Citation Checker \u2014 Find Name, Address, Phone Inconsistencies Online - Riman Agency\" \/>\n<meta property=\"og:description\" content=\"NAP Citation Consistency Checker Paste your businessu2019s Name, Address, and Phone (NAP) from multiple directory listings and instantly spot inconsistencies \u2014 wrong suite numbers, abbreviated streets, missing area codes, phone format differences. NAP consistency is one of the top local SEO ranking factors. NAP Listings Paste NAP entries (one per line, format: Name | Address [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rimanagency.com\/fr\/nap-citation-checker-find-name-address-phone-inconsistencies-online\/\" \/>\n<meta property=\"og:site_name\" content=\"Riman Agency\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/rimanagency.com\\\/nap-citation-checker-find-name-address-phone-inconsistencies-online\\\/\",\"url\":\"https:\\\/\\\/rimanagency.com\\\/nap-citation-checker-find-name-address-phone-inconsistencies-online\\\/\",\"name\":\"NAP Citation Checker \u2014 Find Name, Address, Phone Inconsistencies Online - Riman Agency\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/rimanagency.com\\\/#website\"},\"datePublished\":\"2026-06-18T14:21:16+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/rimanagency.com\\\/nap-citation-checker-find-name-address-phone-inconsistencies-online\\\/#breadcrumb\"},\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/rimanagency.com\\\/nap-citation-checker-find-name-address-phone-inconsistencies-online\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/rimanagency.com\\\/nap-citation-checker-find-name-address-phone-inconsistencies-online\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/rimanagency.com\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"NAP Citation Checker \u2014 Find Name, Address, Phone Inconsistencies Online\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/rimanagency.com\\\/#website\",\"url\":\"https:\\\/\\\/rimanagency.com\\\/\",\"name\":\"Riman Agency\",\"description\":\"A Full Service Digital Marketing Agency\",\"publisher\":{\"@id\":\"https:\\\/\\\/rimanagency.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/rimanagency.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-CA\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/rimanagency.com\\\/#organization\",\"name\":\"Riman Agency\",\"url\":\"https:\\\/\\\/rimanagency.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\\\/\\\/rimanagency.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/rimanagency.com\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/RIMANagency-all-logos-1-2.png\",\"contentUrl\":\"https:\\\/\\\/rimanagency.com\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/RIMANagency-all-logos-1-2.png\",\"width\":694,\"height\":211,\"caption\":\"Riman Agency\"},\"image\":{\"@id\":\"https:\\\/\\\/rimanagency.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"NAP Citation Checker \u2014 Find Name, Address, Phone Inconsistencies Online - Riman Agency","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/rimanagency.com\/fr\/nap-citation-checker-find-name-address-phone-inconsistencies-online\/","og_locale":"fr_CA","og_type":"article","og_title":"NAP Citation Checker \u2014 Find Name, Address, Phone Inconsistencies Online - Riman Agency","og_description":"NAP Citation Consistency Checker Paste your businessu2019s Name, Address, and Phone (NAP) from multiple directory listings and instantly spot inconsistencies \u2014 wrong suite numbers, abbreviated streets, missing area codes, phone format differences. NAP consistency is one of the top local SEO ranking factors. NAP Listings Paste NAP entries (one per line, format: Name | Address [&hellip;]","og_url":"https:\/\/rimanagency.com\/fr\/nap-citation-checker-find-name-address-phone-inconsistencies-online\/","og_site_name":"Riman Agency","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/rimanagency.com\/nap-citation-checker-find-name-address-phone-inconsistencies-online\/","url":"https:\/\/rimanagency.com\/nap-citation-checker-find-name-address-phone-inconsistencies-online\/","name":"NAP Citation Checker \u2014 Find Name, Address, Phone Inconsistencies Online - Riman Agency","isPartOf":{"@id":"https:\/\/rimanagency.com\/#website"},"datePublished":"2026-06-18T14:21:16+00:00","breadcrumb":{"@id":"https:\/\/rimanagency.com\/nap-citation-checker-find-name-address-phone-inconsistencies-online\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rimanagency.com\/nap-citation-checker-find-name-address-phone-inconsistencies-online\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/rimanagency.com\/nap-citation-checker-find-name-address-phone-inconsistencies-online\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/rimanagency.com\/home\/"},{"@type":"ListItem","position":2,"name":"NAP Citation Checker \u2014 Find Name, Address, Phone Inconsistencies Online"}]},{"@type":"WebSite","@id":"https:\/\/rimanagency.com\/#website","url":"https:\/\/rimanagency.com\/","name":"Agence Riman","description":"Une agence de marketing num\u00e9rique \u00e0 service complet","publisher":{"@id":"https:\/\/rimanagency.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/rimanagency.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-CA"},{"@type":"Organization","@id":"https:\/\/rimanagency.com\/#organization","name":"Agence Riman","url":"https:\/\/rimanagency.com\/","logo":{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/rimanagency.com\/#\/schema\/logo\/image\/","url":"https:\/\/rimanagency.com\/wp-content\/uploads\/2022\/02\/RIMANagency-all-logos-1-2.png","contentUrl":"https:\/\/rimanagency.com\/wp-content\/uploads\/2022\/02\/RIMANagency-all-logos-1-2.png","width":694,"height":211,"caption":"Riman Agency"},"image":{"@id":"https:\/\/rimanagency.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/pages\/5167","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/comments?post=5167"}],"version-history":[{"count":0,"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/pages\/5167\/revisions"}],"wp:attachment":[{"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/media?parent=5167"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}