ActorStack.dev

The 0507 number: why a Korean business phone might not be the business

Naver puts a relay number in front of many businesses' real lines. Between 37% and 87% of them, depending on vertical, publish only that — and a dataset that does not flag it is a call list into a redirect.

By Oswaldo Carabano6 min read
The front of a Korean restaurant, its name in Hangul above the entrance.
Photo: Ruby Huang on Pexels

Short answer

Numbers beginning `0507` on Naver Place are relay numbers Naver places in front of a business's real line, so calls route through Naver rather than directly. Between 37% and 87% of businesses, depending on vertical, publish only the relay. Every row carries `phone_is_virtual` because a dataset that mixes relays and real lines silently is a contact list whose reachability nobody can characterise.

Key points

  • `0507` is a Korean relay prefix, not a geographic area code.
  • The relay works for calling, but it is not the business's own line and it can be withdrawn independently of the business.
  • Between 37% and 87% of businesses publish only the relay, varying by vertical.
  • `phone_is_virtual` is a separate boolean field so the distinction survives into your database.
  • For attribution, a relay number is Naver's tracking channel: calls through it are measurable by Naver, not by you.
On this page6 sections

A Korean business phone number starting 0507 is not the business's phone number. It is a relay Naver puts in front of it, and depending on the vertical between 37% and 87% of businesses publish only that.

What a 0507 number is

A safe-number prefix. Calls to it are forwarded to the business's real line, so it works for reaching them, but it is allocated by the platform rather than by the business and it can be withdrawn or reassigned independently of them.

It is not a geographic area code, which is the first practical consequence: any analysis that infers location from a phone prefix silently misplaces every business with a relay.

Why Naver puts one there

Two reasons that both make sense from Naver's side. It protects the business's real line from being harvested, and it makes calls originating from Naver measurable — a relay is an attribution channel as much as a privacy feature.

How common it is

Between 37% and 87% of businesses, depending on vertical, publish only the relay. That is a wide range, and it is wide for the same reason phone coverage itself varies by vertical: different kinds of business have different relationships with the platform.

The flag, and why it is a field

phone_is_virtual is a boolean on every row. It is a field rather than something inferred from the prefix downstream, for the same reason cache metadata belongs on the row: whatever your pipeline will need to reason about later should be recorded while it is still known.

Prefix-sniffing in the consumer also breaks quietly. Korea has other non-geographic prefixes, and a new relay range would produce silent misclassification in every downstream system at once.

What it means for outreach and analysis

  • Reachability. A relay usually works, but it is a redirect — and if it is withdrawn, your contact is dead while the business is fine.
  • Deduplication. Several businesses can share a relay range, so a phone number is a weaker identity key than it looks. Use place_id.
  • Attribution. Calls through a relay are visible to the platform. If you are measuring your own campaign, that is a channel you do not control.
  • Geography. Never infer a region from a 0507 number. Use region and the addresses.

Practical handling

separating the two, and reporting the split
SELECT
  phone_is_virtual,
  COUNT(*)                                  AS businesses,
  ROUND(100.0 * COUNT(*) / SUM(COUNT(*)) OVER (), 1) AS pct
FROM businesses
WHERE phone IS NOT NULL
GROUP BY phone_is_virtual;

Run that first on any new vertical. It takes a second and it tells you what fraction of your contact list is a redirect — which is a number you want before you build a campaign on it, not after.

Frequently asked questions

What is a 0507 number in Korea?
A relay number. Calls to it are forwarded to the business's real line, so it works for reaching them but is not the business's own number and can change independently of it.
How many Naver businesses publish only a relay number?
Between 37% and 87%, depending on the vertical measured. Every row carries `phone_is_virtual` so you can tell which you have.
Can I get the real number behind the relay?
Not from the public page — the relay exists precisely so the real line is not published. Treat it as the contact channel the business chose to offer.

Sources

Every URL below was requested and returned a page on the date shown.

  1. Operator claimchecked 19 Aug 2026
    Naver Place Business & Reviews Scraper — Actor README and input schemaActorStack / Apify Store
A Seoul street lined with restaurants, their Korean signs stacked up the building fronts.
Naver PlaceMeasured

The padding finding

Naver silently pads its search results with businesses from neighbouring areas. Measured across ten queries — and it is the difference between a local dataset and a regional blur.

8 min
A narrow Seoul street at night, lit by shopfront signage on both sides.
Naver PlaceGuide

Scrape Naver Place

Google Maps coverage in Korea is thin; Naver Place is where the data is. A walkthrough of querying it, and of the padding you have to remove before the results mean anything.

9 min
A Seoul street lined with restaurants, their Korean signs stacked up the building fronts.
Naver PlaceExplainer

Reviews without identities

Every Naver review carries a nickname, a stable account id and a link to the reviewer's entire history. None of it is returned, and a test fails the build if it ever is.

7 min