Reference8 min~123 words
Account and project endpoints
Reference for `/me`, project lists and project details.
GET /me
Returns the authenticated account, paid API access, key display information and current read:workspace scope.
bash
curl "https://aetherionai.org/api/v1/me" \
-H "Authorization: Bearer YOUR_API_KEY"| Response object | Fields |
|---|---|
account | id, email, full_name |
api_access | plan, plan_name, subscription_status, current_period_end, scope |
api_key | id, name, display_key |
GET /projects
Lists non-deleting projects owned by the authenticated account.
| Parameter | Allowed values |
|---|---|
status | Exact project status. |
q | Case-insensitive project-name search. |
sort | created_at, updated_at, name, status |
| Pagination | Shared page, per_page, order parameters. |
bash
curl "https://aetherionai.org/api/v1/projects?status=active&sort=updated_at&order=desc" \
-H "Authorization: Bearer YOUR_API_KEY"GET /projects/{projectId}
Returns safe project metadata plus counts for project files, assets, owned deployments and events. A project that belongs to another account resolves as not found.
| Project fields | Count fields |
|---|---|
id, name, type, status, initial_prompt, preview_image_url, preview_updated_at, current_version, timestamps | files, assets, deployments, events |
Need project-specific help?
Open the private Help Center or create a support ticket with the affected project, route and request ID.