# Naver Errata API (https://www.socialcrawl.dev/platforms/naver/errata) > Returns Naver's suggested correction for a mistyped Korean query under `data.errata`. Korean typos usually come from hitting the wrong jamo key rather than misspelling a whole word, so a naive edit-distance check does not catch them; this is Naver's own correction used on its search box. An empty `errata` string means the query was already spelled correctly, which is a successful answer, not an error. Latin-script queries also return an empty string. TL;DR: `GET /v1/naver/errata` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `query` | yes | The possibly-mistyped search term (UTF-8). Required. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/naver/errata?query=%EB%84%A4%EC%9D%B4%EB%B3%98" \ -H "x-api-key: sc_YOUR_API_KEY" ``` See the full Naver API: https://www.socialcrawl.dev/platforms/naver ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing