Nstproxy
  1. Api
Nstproxy
  • Api
    • Get User Info
      GET
    • Get Plan Info
      GET
    • Get Country List
      GET
    • Get State List
      GET
    • Get City List
      GET
    • Generate Proxies List
      GET
    • Get Channels
      GET
    • Channel Info
      GET
    • Add Channel
      POST
    • Update Channel
      PUT
    • Delete Channel
      DELETE
  1. Api

Add Channel

POST
/api/v1/api/channel

Request

Authorization
Add parameter in query
token
Example:
token: ********************
Body Params application/json

Example
{
    "name": "Residential-411-SqV7",
    "password": "123456",
    "zoneName": "residential-zone-prod-3",
    "limit": 10000000000,
    "type": "residential",
    "country": "US",
    "state": "AL",
    "city": "alabaster",
    "whitelist": [
    ],
    "senses": [
    ]
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.nstproxy.com/api/v1/api/channel?token' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "Residential-411-SqV7",
    "password": "123456",
    "zoneName": "residential-zone-prod-3",
    "limit": 10000000000,
    "type": "residential",
    "country": "US",
    "state": "AL",
    "city": "alabaster",
    "whitelist": [
    ],
    "senses": [
    ]
}'

Responses

🟢201Created
application/json
Body

Example
{
    "data": {
        "channelId": "",
        "userId": "",
        "token": "",
        "zoneName": "residential-zone-prod-3",
        "name": "Residential-411-SqV7",
        "password": "123456",
        "whitelist": [],
        "senses": [],
        "type": "residential",
        "regionType": "city",
        "country": "US",
        "state": "AL",
        "city": "alabaster",
        "speedPercent": 100,
        "status": 1,
        "used": 0,
        "limit": 10000000000,
        "priceGB": 5,
        "consumeAmount": 0,
        "editableRegion": true,
        "_id": "",
        "createdAt": "",
        "updatedAt": "",
        "__v": 0,
        "remain": 0,
        "id": ""
    },
    "err": false,
    "msg": "SUCCESS",
    "code": 200
}
Modified at 2024-04-12 03:22:58
Previous
Channel Info
Next
Update Channel
Built with