Skip to content

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.

ParameterTypeRequiredDescription
profile_idUUIDYesProfile 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

ParameterTypeRequiredDescription
profile_idUUIDYesTarget profile
target_websitestringYesTarget website for cookies
additional_websitestringNoAdditional website

Supported Target Websites

WebsiteValue
Googlegoogle
Facebookfacebook
Amazonamazon
eBayebay
Bingbing
Etsyetsy
Mixedmixed 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.

ParameterTypeRequiredDescription
profile_idUUIDYesProfile to update
target_websitestringYesNew target website
additional_websitestringNoAdditional 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"
  }
}

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.