Skip to main content
GET
/
api
/
cameras
/
{cameraId}
/
connection
Check connection status
curl --request GET \
  --url http://{host}:{port}/api/cameras/{cameraId}/connection
{
  "success": true,
  "message": "Camera connected",
  "camera": {
    "connected": true,
    "model": "ILCE-7M4",
    "id": "D06CE00004C4"
  },
  "data": {
    "mode": "remote-transfer"
  }
}

Documentation Index

Fetch the complete documentation index at: https://crsdk.app/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

cameraId
string
required

Camera identifier (e.g. D10F60149B0C)

Response

200 - application/json

Connection status

Response envelope for GET /api/cameras/{id}/connection. When the camera is connected, data.mode reports the active SDK connection mode (remote / remote-transfer / contents) so clients don't have to remember what they passed at connect time. When the camera is not connected, data is omitted.

success
boolean
required
message
string
camera
object

Camera info embedded in API responses

data
object