from complycube import ComplyCubeClient
cc_api = ComplyCubeClient(api_key='<YOUR_API_KEY>')
live_photo = cc_api.livephotos.get('LIVE_PHOTO_ID')
use ComplyCube\ComplyCubeClient;
$ccapi = new ComplyCubeClient('<YOUR_API_KEY>');
$livePhoto = $ccapi->livephotos()->get('LIVE_PHOTO_ID');
using ComplyCube.Net;
using ComplyCube.Net.Resources.LivePhotos;
var livePhotoApi = new LivePhotoApi(new ComplyCubeClient("<YOUR_API_KEY>"));
var livePhoto = await livePhotoApi.GetAsync("LIVE_PHOTO_ID");