Appearance
Pre-made Cookies
Inject pre-made cookies from popular websites into browser profiles for session warming.
Base URL: https://cookies.multilogin.com
List Available Cookies
GET /api/v1/cookies
Retrieve the list of available pre-made cookie sets.
| Parameter | Type | Required | Description |
|---|---|---|---|
profile_id | UUID | Yes | Profile to check cookies for |
bash
curl "https://cookies.multilogin.com/api/v1/cookies?profile_id=PROFILE_UUID" \
-H "Authorization: Bearer YOUR_TOKEN"Response:
json
{
"data": {
"cookies": [
{
"id": 24521,
"cookies": [
{
"name": "DellCEMSession",
"domain": ".dell.com",
"path": "/",
"value": "274F94FB24FBD9FF6ED2462CFFC983E9",
"secure": true,
"httpOnly": true,
"sameSite": "None",
"expirationDate": 1740851445102
}
]
}
]
},
"status": {
"error_code": "",
"http_code": 200,
"message": ""
}
}Apply Cookies to Profile
POST /api/v1/cookies/apply
Apply pre-made cookies to a browser profile. Supports Strict and Non-Strict modes.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
profile_id | UUID | Yes | Target profile |
target_website | string | Yes | Target website for cookies |
additional_website | string | No | Additional website |
Supported Target Websites
| Website | Value |
|---|---|
google | |
facebook | |
| Amazon | amazon |
| eBay | ebay |
| Bing | bing |
| Etsy | etsy |
| Mixed | mixed or mix |
bash
curl -X POST https://cookies.multilogin.com/api/v1/cookies/apply \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"profile_id": "PROFILE_UUID",
"target_website": "google"
}'Response:
json
{
"status": {
"error_code": "",
"http_code": 200,
"message": "cookies applied successfully"
}
}Update Cookies Metadata
PUT /api/v1/cookies/metadata
Update the target website metadata for cookies already applied to a profile.
| Parameter | Type | Required | Description |
|---|---|---|---|
profile_id | UUID | Yes | Profile to update |
target_website | string | Yes | New target website |
additional_website | string | No | Additional website |
bash
curl -X PUT https://cookies.multilogin.com/api/v1/cookies/metadata \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"profile_id": "PROFILE_UUID",
"target_website": "amazon",
"additional_website": "ebay"
}'Response:
json
{
"status": {
"error_code": "",
"http_code": 200,
"message": "cookies metadata successfully updated"
}
}Cookie Injection Workflow
Why Use Pre-made Cookies?
Pre-made cookies help browser profiles appear as returning visitors rather than fresh browsers. This reduces the chance of being flagged by anti-fraud systems on target websites.