OrdersCreate
IPv6 Residential
Create an IPv6 Residential proxy order
Create IPv6 Residential Order
Endpoint: POST /orders
IPv6 Residential is a duration-type plan with a configurable speed option on each duration.
Required Fields
| Field | Type | Required | Notes |
|---|---|---|---|
plan | string (slug) | yes | ipv6-residential. |
duration | string (slug) | yes | Duration slug from plan.durations[].slug for that plan (e.g. 1_week, 30_days). |
config | object | yes | Must include speed with a value allowed for the chosen duration (see plan options). |
See Common Fields for optional discount_code, and Duration Slug Format. Orders use account balance only.
Request Body
{
"plan": "ipv6-residential",
"duration": "1_week",
"config": {
"speed": 10
}
}Resolve allowed speed values from GET /plans/ipv6-residential: inspect durations[] for your slug, then the speed option under options (type, min / max / step, or options[].value for selects).