cURL
curl --request GET \ --url https://api.unifically.com/higgsfield/camera-settings \ --header 'Authorization: Bearer <token>'
{ "code": 200, "success": true, "data": { "camera_models": [ { "id": "cm-001", "name": "Professional DSLR", "description": "Full-frame sensor with cinematic color science" }, { "id": "cm-002", "name": "Medium Format", "description": "Larger sensor for exceptional detail and dynamic range" } ], "camera_lenses": [ { "id": "cl-001", "name": "Standard Prime", "description": "Sharp, natural perspective" }, { "id": "cl-002", "name": "Wide Angle", "description": "Expansive field of view" }, { "id": "cl-003", "name": "Telephoto", "description": "Compressed perspective, great for portraits" } ], "camera_apertures": [ { "id": "ca-001", "name": "f/1.4", "description": "Very shallow depth of field, strong bokeh" }, { "id": "ca-002", "name": "f/2.8", "description": "Moderate bokeh, good subject separation" }, { "id": "ca-003", "name": "f/8", "description": "Sharp throughout, deep depth of field" } ], "camera_focal_lengths": [ { "id": "cf-001", "name": "24mm", "description": "Wide angle, great for landscapes" }, { "id": "cf-002", "name": "50mm", "description": "Natural perspective, versatile" }, { "id": "cf-003", "name": "85mm", "description": "Portrait focal length, flattering compression" }, { "id": "cf-004", "name": "135mm", "description": "Telephoto, strong compression" } ] } }
Retrieve available camera models, lenses, apertures, and focal lengths for image generation
curl -X GET "https://api.unifically.com/higgsfield/camera-settings" \ -H "Authorization: Bearer YOUR_API_KEY"
camera_model_id
camera_lens_id
camera_aperture_id
camera_focal_length_id
{ "prompt": "Portrait with beautiful bokeh", "resolution": "4k", "camera_model_id": "cm-001", "camera_lens_id": "cl-003", "camera_aperture_id": "ca-001", "camera_focal_length_id": "cf-003" }