Business contact
A list of all publicly available methods for interacting with the API.
POST
Business contact -/business/contact
Query method
POSThttps://api.stableproxy.com/v2/business/contact
Code examples
JavaScript
async function postBusinessContact() {
const baseUrl = 'https://api.stableproxy.com/v2';
const req = await fetch(baseUrl + '/business/contact', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
}
}
);
const res = await req.json();
}