ShareProxy.Net
API to Intergrate with your system to submit proxy to us
URL: POST https://shareproxy.net/do/add_proxy?access_key=[NEED_TOKEN_HERE]
Description: Add one or many proxy
Replace [NEED_TOKEN_HERE] by your token, please access to account infomation to get token
Content-type: application/json
Payload
Parameter | Value | Type | |
send_type | "one" or "many" | string | Required |
protocol | "http" or "socks5" | string | Required. Proxy's Protocol is http or socks5 |
ip | Proxy's Server/Host ex: 1.1.1.1 | string | Required with send_type = "one" |
port | Proxy's Port ex: 1234 | string | Required with send_type = "one" |
username | Proxy's Username | string | Required with send_type = "one" |
password | Proxy's Password | string | Required with send_type = "one" |
proxies | Proxy List ex: abc:xyz:1.1.1.1:1234|gih:kml:8.8.8.8:9999 | string | Required with send_type = "many" and Each proxy separated by "|" with proxy format Username:Password:Host:Port and same protocol type |
Response:
Parameter | Value | |
status | success or error | |
msg | Message text | |
proxies | Array result: [ { "proxy1": ["status" : “success or error”, "msg" : "text"] }, { "proxy2": ["status" : “success or error”, "msg" : "text"] } ] | Optional with send_type = “many” |