API Documentation
Use the Deep Creative Labs API with any programming language via direct HTTP requests.
HTTP / REST API
Use the API directly with any programming language
The Deep Creative Labs API is a standard REST API. You can use it with any programming language or HTTP client. Perfect for languages without an official client library.
Example Request
cURL
1curl -X POST https://api.deepcreativelabs.com/v1/google/nano-banana/predictions \
2 -H "Authorization: Bearer YOUR_API_KEY" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "input": {
6 "prompt": "A serene Japanese garden with cherry blossoms"
7 }
8 }'