Skip to main content
POST
/
orders
/
{order_id}
/
signature
Change proxy signature
curl --request POST \
  --url https://api.proxyjam.com/public/v1/orders/{order_id}/signature \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "signature": "<string>"
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.proxyjam.com/llms.txt

Use this file to discover all available pages before exploring further.

Changes the device signature (e.g. operating system fingerprint) used by the proxy. Available signatures can be listed via List proxy signatures.

Path parameters

order_id
string
required
UUID of the order backing the mobile rotating proxy.

Request body

signature
string
required
Target device signature, e.g. android, ios, linux, windows. See List proxy signatures for the full set.

Response

Live snapshot of the mobile rotating proxy with the new signature applied. Same shape as the mobile branch of Get order.

Example

curl -X POST "https://api.proxyjam.com/public/v1/orders/997b4450-e7ae-4ad9-8a25-996e582049c9/signature" \
  -H "X-API-Key: pj_AbCdEf..." \
  -H "Content-Type: application/json" \
  -d '{"signature": "android"}'