List GitHub contributors
curl --request GET \
--url https://v2.stopbars.com/contributorsimport requests
url = "https://v2.stopbars.com/contributors"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/contributors', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));GitHub
List GitHub contributors
GET
/
contributors
List GitHub contributors
curl --request GET \
--url https://v2.stopbars.com/contributorsimport requests
url = "https://v2.stopbars.com/contributors"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/contributors', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Response
200
Contributors returned
Was this page helpful?
