Skip to content
GET /access-request/{id}

Visibility is resolved per caller, not gated by one fixed permission, the same shape as `GET /synthetic-tool/{id}`: an admin (`member:manage`) sees any request and gets the admin view; the request’s own requester sees it too, as the self view; anyone else gets `404` — a request’s existence is not for a bystander to learn.

Path Parameters

idstring
required·

Access request id (areq_…).

curl -X GET 'https://api.elaichi.ai/access-request/<id>' \
  -H 'Authorization: Bearer $ELAICHI_API_TOKEN' \
  -H 'Content-Type: application/json'
const response = await fetch('https://api.elaichi.ai/access-request/<id>', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer ' + process.env.ELAICHI_API_TOKEN,
    'Content-Type': 'application/json',
  },
});

const data = await response.json();
console.log(data);
import os
import requests

url = "https://api.elaichi.ai/access-request/<id>"
headers = {
    "Authorization": f"Bearer {os.environ['ELAICHI_API_TOKEN']}",
    "Content-Type": "application/json",
}

response = requests.get(url, headers=headers)
print(response.json())