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

ParameterValueType 
send_type"one" or "many"stringRequired
protocol"http" or "socks5"stringRequired. Proxy's Protocol is http or socks5
ipProxy's Server/Host ex: 1.1.1.1stringRequired with send_type = "one"
portProxy's Port ex: 1234stringRequired with send_type = "one"
usernameProxy's UsernamestringRequired with send_type = "one"
passwordProxy's PasswordstringRequired with send_type = "one"
proxiesProxy List ex: abc:xyz:1.1.1.1:1234|gih:kml:8.8.8.8:9999stringRequired with send_type = "many" and Each proxy separated by "|" with proxy format Username:Password:Host:Port and same protocol type

 

Response:

ParameterValue 
statussuccess or error 
msgMessage text 
proxies

Array result:

[

{

"proxy1": ["status" : “success or error”, "msg" : "text"]

},

{

"proxy2": ["status" : “success or error”, "msg" : "text"]

}

]

Optional with send_type = “many”