API Reference

API reference

The complete list of HTTP endpoints your camera serves on your home network. Your own scripts and tools talk straight to the camera, with no cloud and no account needed.

๐Ÿ“–
Full OpenAPI reference: browse the complete, interactive schema at platform.eyeofthetiger.ai/api/docs.
๐Ÿš€
Just getting started? The Quick Start guide walks you through getting your camera onto your network step by step.

Your device on the network

Once your camera is set up, it lives on your home network at http://eyeofthetiger.local. There are two ways to talk to it, depending on what you are building:

InterfaceBase URLUse for
HTTP APIhttp://eyeofthetiger.local/v1/Scripts, automation, direct curl calls
MCP serverhttp://eyeofthetiger.local/mcp/AI assistants that support MCP

Want to check it is reachable first? Open http://eyeofthetiger.local/docs in your browser. You will get a full, interactive API reference served straight from the camera. If you would rather connect an AI assistant over MCP, head to the MCP Reference.


HTTP API

Capture an image

Returns a JPEG still frame from the camera.

MethodPathResponse
GET/v1/imageJPEG bytes

Record a video clip

Start and stop recording, then download the clip.

MethodPathDescription
POST/v1/startStart recording
POST/v1/stopStop recording
GET/v1/recordingDownload the last recorded clip (MP4)

Quality

Control the capture quality. Quality presets apply to both still images and video.

MethodPathDescription
GET/v1/configurationReturn current quality settings
POST/v1/configuration/still/quality?level=<high|medium|low>Set still-image quality preset
POST/v1/configuration/video/quality?level=<high|medium|low>Set video quality preset

Quality presets:

LevelStill resolutionVideo resolutionBitrate
high4608ร—25921920ร—10805 Mbps
medium2304ร—12961280ร—7202 Mbps
low1280ร—7201536ร—864800 Kbps

Ready to wire this up to an AI assistant? See the Integration Guides, or try the Quick Checks to confirm every endpoint is reachable.