Leap Motion

Leap Motion is the hand-tracking company behind the Leap Motion Controller. It merged with Ultrahaptics in 2019 to form Ultraleap, and the Leap Motion brand now continues as Ultraleap's hardware line (Leap Motion Controller 2) and as the "Leap" naming across the tracking SDK. The developer surface is not a hosted web API: it is LeapC, a native C API that connects a local client to the Ultraleap Hand Tracking Service and delivers tracked hands, digits, bones, images and device events as polled messages, plus first-party plugins for Unity, Unreal, OpenXR and Python. The original leapmotion.com and developer.leapmotion.com domains no longer resolve; docs.ultraleap.com and github.com/ultraleap are the live developer surfaces.

Leap Motion publishes 2 APIs on the APIs.io network. Tagged areas include Company, Hand Tracking, Computer Vision, Spatial Computing, and Augmented Reality.

Leap Motion’s developer surface includes documentation, API reference, getting-started guide, engineering blog, support, changelog, sandbox, and 21 more developer resources.

27.4/100 emerging Agent 8/100 human only Full breakdown ↓
scored 2026-07-20 · rubric v0.4
2 APIs 0 Features
CompanyHand TrackingComputer VisionSpatial ComputingAugmented RealityVirtual RealityXRGesture RecognitionSDKHardwareHuman Computer InteractionOpenXR

API Rating

API Evangelist API Evangelist Rating How this is scored →
scored 2026-07-20 · rubric v0.4
Composite quality — 27.4/100 · emerging
Contract Quality 0.0 / 25
Developer Ergonomics 10.9 / 20
Commercial Clarity 5.8 / 20
Operational Transparency 2.7 / 13
Governance 0.0 / 12
Discoverability 8.0 / 10
Agent readiness — 8/100 · human only
Machine-Readable Contract 0 / 18
Agentic Access Contract 0 / 15
MCP Server 0 / 12
Machine-Readable Auth 0 / 10
Idempotency 0 / 9
Stable Error Semantics 8 / 8
Request/Response Examples 0 / 7
Rate-Limit Signaling 0 / 7
Typed Event Surface 0 / 6
Agent Skills 0 / 5
Well-Known Catalog 0 / 4
Consent & Bot Identity 0 / 3
Improve this rating by publishing the missing artifacts — every area above can be raised, and the full rubric is at apis.io/rating/. This rating is computed from github.com/api-evangelist/leap-motion: open an issue to ask a question, or submit a pull request to add artifacts. Want it done for you? Prioritized profiling — $2,500 →

APIs

LeapC Tracking API

LeapC is the native C API for Ultraleap / Leap Motion hand tracking. A client opens a LEAP_CONNECTION to the locally running Ultraleap Hand Tracking Service and drives a message...

Ultraleap Tracking WebSocket

An open-source WebSocket server from Ultraleap that restores the LeapJS-compatible websocket surface removed when Leap Motion Orion V4 was replaced by Ultraleap Gemini V5. It st...

Resources

Get Started 3

Portal, sign-up, and the first successful call

Documentation 2

Reference material describing how the API behaves

Agent Surfaces 1

MCP servers, agent skills, and machine-readable catalogs

Design & Contract 6

Pagination, idempotency, versioning, errors, and events

Build 3

SDKs, sample code, and the tooling you integrate with

Access & Security 2

Authentication, authorization, and security posture

Operate 4

Status, limits, changes, and where to get help

Commercial 3

Pricing, plans, and the legal terms of use

Company 2

The organization behind the API

Other 2

Properties that don't map to a standard resource type

Source (apis.yml)

apis.yml Raw ↑
aid: leap-motion
name: Leap Motion
description: 'Leap Motion is the hand-tracking company behind the Leap Motion Controller. It merged with Ultrahaptics in 2019
  to form Ultraleap, and the Leap Motion brand now continues as Ultraleap''s hardware line (Leap Motion Controller 2) and
  as the "Leap" naming across the tracking SDK. The developer surface is not a hosted web API: it is LeapC, a native C API
  that connects a local client to the Ultraleap Hand Tracking Service and delivers tracked hands, digits, bones, images and
  device events as polled messages, plus first-party plugins for Unity, Unreal, OpenXR and Python. The original leapmotion.com
  and developer.leapmotion.com domains no longer resolve; docs.ultraleap.com and github.com/ultraleap are the live developer
  surfaces.'
image: https://avatars.githubusercontent.com/u/51484212?v=4
url: https://raw.githubusercontent.com/api-evangelist/leap-motion/refs/heads/main/apis.yml
x-type: company
x-source: vc-portfolio
x-backed-by:
- a16z
x-successor: Ultraleap
x-successor-url: https://www.ultraleap.com/
specificationVersion: '0.20'
created: '2026-07-17'
modified: '2026-07-19'
tags:
- Company
- Hand Tracking
- Computer Vision
- Spatial Computing
- Augmented Reality
- Virtual Reality
- XR
- Gesture Recognition
- SDK
- Hardware
- Human Computer Interaction
- OpenXR
apis:
- aid: leap-motion:leapc-tracking-api
  name: LeapC Tracking API
  description: LeapC is the native C API for Ultraleap / Leap Motion hand tracking. A client opens a LEAP_CONNECTION to the
    locally running Ultraleap Hand Tracking Service and drives a message pump with LeapPollConnection(), receiving tracking
    events (LEAP_TRACKING_EVENT with LEAP_HAND / LEAP_PALM / LEAP_DIGIT / LEAP_BONE), device events, image frames, policy
    and configuration responses. It is the layer the Unity, Unreal, OpenXR and Python bindings are built on. There is no hosted
    HTTP base URL — the transport is local IPC to the tracking service.
  humanURL: https://docs.ultraleap.com/api-reference/tracking-api/index.html
  tags:
  - Hand Tracking
  - Native API
  - C
  properties:
  - type: Documentation
    url: https://docs.ultraleap.com/api-reference/tracking-api/leapc-guide.html
  - type: APIReference
    url: https://docs.ultraleap.com/api-reference/tracking-api/api-reference.html
  - type: Examples
    url: https://docs.ultraleap.com/api-reference/tracking-api/examples.html
  - type: ErrorCatalog
    url: errors/leap-motion-error-codes.yml
  - type: DataModel
    url: data-model/leap-motion-data-model.yml
  - type: Conventions
    url: conventions/leap-motion-conventions.yml
- aid: leap-motion:tracking-websocket
  name: Ultraleap Tracking WebSocket
  description: An open-source WebSocket server from Ultraleap that restores the LeapJS-compatible websocket surface removed
    when Leap Motion Orion V4 was replaced by Ultraleap Gemini V5. It streams tracking data over the legacy LeapJS "v6" JSON
    protocol so browser applications can consume hand tracking. It runs locally alongside the tracking service; the endpoint
    is a loopback WebSocket, not a hosted API.
  humanURL: https://github.com/ultraleap/UltraleapTrackingWebSocket
  tags:
  - WebSocket
  - Streaming
  - Browser
  properties:
  - type: SourceCode
    url: https://github.com/ultraleap/UltraleapTrackingWebSocket
  - type: Documentation
    url: https://github.com/ultraleap/UltraleapTrackingWebSocket/blob/main/README.md
common:
- type: DomainSecurity
  url: security/leap-motion-domain-security.yml
- type: Website
  url: https://www.ultraleap.com/
- type: DeveloperPortal
  url: https://docs.ultraleap.com/
- type: Documentation
  url: https://docs.ultraleap.com/hand-tracking/index.html
- type: APIReference
  url: https://docs.ultraleap.com/api-reference/tracking-api/index.html
- type: GettingStarted
  url: https://docs.ultraleap.com/hand-tracking/getting-started.html
- type: Downloads
  url: https://www.ultraleap.com/downloads/
- type: Products
  url: https://www.ultraleap.com/products/
- type: Blog
  url: https://docs.ultraleap.com/ultralab/index.html
- type: GitHubOrganization
  url: https://github.com/ultraleap
- type: Support
  url: https://www.ultraleap.com/contact/
- type: Community
  url: https://discord.com/invite/3VCndThqxS
- type: TermsOfService
  url: https://www.ultraleap.com/legal/ultraleap-ltd-terms-conditions-of-business/
- type: PrivacyPolicy
  url: https://www.ultraleap.com/legal/privacy-policy/
- type: License
  url: https://www.ultraleap.com/legal/
- type: Compliance
  url: https://www.ultraleap.com/legal/
- type: ChangeLog
  url: https://docs.ultraleap.com/openxr/changelog/index.html
- type: ChangeLog
  url: changelog/leap-motion-changelog.yml
- type: Packages
  url: packages/leap-motion-packages.yml
- type: SDKs
  url: packages/leap-motion-packages.yml
- type: Conformance
  url: conformance/leap-motion-conformance.yml
- type: ErrorCatalog
  url: errors/leap-motion-error-codes.yml
- type: Lifecycle
  url: lifecycle/leap-motion-lifecycle.yml
- type: Conventions
  url: conventions/leap-motion-conventions.yml
- type: DataModel
  url: data-model/leap-motion-data-model.yml
- type: Components
  url: components/leap-motion-components.yml
- type: Sandbox
  url: sandbox/leap-motion-sandbox.yml
- type: LLMsTxt
  url: llms/leap-motion-llms.txt
maintainers:
- FN: Kin Lane
  email: kin@apievangelist.com
- FN: APIs.json
  email: info@apis.io