const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://blackbox.dasha.ai/api/v1/misc/me', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"orgId": "<string>"
}Retrieves the organization ID associated with the current API key. Useful for verifying authentication and organization context.
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://blackbox.dasha.ai/api/v1/misc/me', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"orgId": "<string>"
}Returns organization information successfully
1Was this page helpful?