Skip to main content

List projects

GET 

https://api.withemissary.com/v1/projects

Returns a list of projects.

Responses

List of Project's summary object.

Authorization: X-API-Key

name: X-API-Keytype: apiKeyin: header
import http.client

conn = http.client.HTTPSConnection("api.withemissary.com")
payload = ''
headers = {
'Accept': 'application/json',
'X-API-Key': '<API_KEY_VALUE>'
}
conn.request("GET", "/v1/projects", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
Request Collapse all
Base URL
https://api.withemissary.com
Auth