How to Get a Combo ID
Find any Photolab effect and extract its ID in under 30 seconds
1
Go to Photolab.me
Open photolab.me in your browser. You'll see hundreds of photo effects and templates.
2
Browse and pick any effect you like
Scroll through the effects gallery. Click on any template or effect that you want to apply to a photo.
3
Look at the URL in your browser
When you open an effect page, look at the browser address bar. The URL will look like this:
https://photolab.me/d/51952891
↑
This number is your Combo ID
4
Copy the number at the end of the URL
The last part of the URL — the number after /d/ — is your Combo ID. Just copy that number.
5
Use it in your API call
Pass it as combo_id in your API request and we'll apply that exact effect to your photo.
Real Combo ID Examples
| Photolab URL | Combo ID |
|---|---|
| https://photolab.me/d/27068538 | 27068538 |
| https://photolab.me/d/34065015 | 34065015 |
| https://photolab.me/d/28962089 | 28962089 |
| https://photolab.me/d/52077049 | 52077049 |
| https://photolab.me/d/51952891 | 51952891 |
Use Combo ID in API Request
# Using combo ID 51952891
POST https://apiphotolab.me/api/generate
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
{
"combo_id": "51952891",
"photo_url": "https://yoursite.com/photo.jpg"
}
💡 Tips:
• Any effect on Photolab.me has a Combo ID — there are thousands to explore.
• Some combos produce images, some produce videos (.mp4) — the API response will include the
• If a combo ID is invalid or no longer available on Photolab.me, the API will return a clear error message.
• Any effect on Photolab.me has a Combo ID — there are thousands to explore.
• Some combos produce images, some produce videos (.mp4) — the API response will include the
type field so you know which one you got.• If a combo ID is invalid or no longer available on Photolab.me, the API will return a clear error message.