Quick Start
Get your API keys
Your API's requests are authenticated using API keys. Any request that doesn't include an API key will return an error.
You can generate an API key from your Dashboard at any time.
Make your first request
To make your first request, send an authenticated request to the endpoint. This will return it a company info
Take a look at how you might call this method using our official libraries, or via curl:
curl 'https://api.elyssa.app/api/v1/Companies/info \
-X GET \
-H "accept: */*" \
-H "Authorization: Bearer {{ token }}" \
-H "Content-Type: application/json"// require the featch module and set it up with your API key
(async () => {
const response = await fetch(
`https://api.elyssa.app/api/v1/Companies/info`,
{
headers: {
"Authorization": `Bearer ${token}`
}
});
const body = await response.json();
console.log(body);
})();Last updated