SK Telecom License Plate Recognizer API

The License Plate Recognizer API from SK Telecom — 1 operation(s) for license plate recognizer.

Operations 1

POST /lpr/v1 lpr #

Documentation

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/sk-telecom-license-plate-recognizer-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

sk-telecom-license-plate-recognizer-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: META License Plate Recognizer API
  version: '1.0'
servers:
- url: https://apis.openapi.sk.com/sigmeta
security:
- sec0: []
tags:
- name: License Plate Recognizer
paths:
  /lpr/v1:
    post:
      tags:
      - License Plate Recognizer
      summary: lpr
      description: 차량의 번호판을 인식하여 번호판 좌표와 차량번호를 JSON 객체로 반환합니다.
      operationId: lpr
      parameters:
      - $ref: '#/components/parameters/ContentTypeMultipart'
      - $ref: '#/components/parameters/AppKey'
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              required:
              - File
              properties:
                File:
                  type: string
                  format: binary
                  description: 인식할 이미지 파일, 최대 허용 용량 3MB, 허용 해상도 640 ~ 1024 pixel
      responses:
        '200':
          description: OK
          content:
            application/json:
              examples:
                Result:
                  value: "{\n  \"performance\": {\n    \"prepare image\": \" 132.98ms\",\n    \"inference\": \" 170.43ms\",\n    \"all\": \" 303.51ms\"\n  },\n  \"result\": {\n    \"objects\": [\n      {\n        \"lp_string\": \"12lu1234\",\n        \"lp_keypoints\": [\n          [\n            0.32421875,\n            0.79140625\n          ],\n          [\n            0.646875,\n            0.79140625\n          ],\n          [\n            0.6546875,\n            0.8421875\n          ],\n          [\n            0.3328125,\n            0.8453125\n          ]\n        ]\n      }\n    ]\n  }\n}"
              schema:
                type: object
                properties:
                  performance:
                    description: 인식 성능
                    type: object
                    properties:
                      prepare image:
                        description: 이미지 준비 시간
                        type: string
                      inference:
                        description: 추론 소요시간
                        type: string
                      all:
                        description: 총 소요시간
                        type: string
                  result:
                    description: 번호판 인식 결과
                    type: object
                    properties:
                      lp_string:
                        description: 차량 번호
                        type: string
                      lp_keypoints:
                        description: 번호판 좌표
                        type: array
components:
  parameters:
    AppKey:
      name: appKey
      in: header
      description: <a href="https://openapi.sk.com/mypage/project/" target="_blank">마이페이지>앱</a>>앱키(appKey) 탭에서 조회
      required: true
      schema:
        type: string
    ContentTypeMultipart:
      name: Content-Type
      description: multipart/form-data
      in: header
      required: true
      schema:
        type: string
        default: multipart/form-data
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: appKey
      x-default: l7xx1317e6cad24d4f0d8048aa7336e5623b
x-readme:
  headers: []
  explorer-enabled: true
  proxy-enabled: true
  samples-enabled: true