InfoLobby Public API
Use the InfoLobby Public API to read and write your workspace data from any external system — CRM tools, data pipelines, scripts, dashboards, or integration platforms like ProcFu.
Base URL
https://infolobby.com/api
What you can do
- List, create, update, and delete workspaces (account keys with no workspace restriction only)
- List, create, update, and delete tables
- Create, update, and delete records
- Query and filter records
- Read and post comments on records
- Upload, delete, and download file attachments on records
- Subscribe to tables and records for change notifications
- Access your notifications and tasks (personal API keys)
What the API does not cover
To keep the surface secure and simple, the public API deliberately excludes:
- User, account, and billing management
- Integration credentials
- Triggers / flows / webforms
These remain available only through the logged-in interface.
Workspace membership is covered for account keys on workspaces in scope. Personal API keys cannot manage workspace membership.
Personal API keys (il_user_) are scoped to a single user's notifications, tasks, and data. They cannot create, update, or delete workspaces or tables — those operations require an account API key (il_live_) with no workspace restriction.
Two types of API keys
| Account keys | Personal keys | |
|---|---|---|
| Prefix | il_live_ |
il_user_ |
| Identity | Account owner | Your user |
| Created by | Account owner (Account settings) | Any user (Profile page) |
| Notifications & tasks | No | Yes |
| Data access | All account data (scoped by key) | Data you have access to |
Getting started
Account keys (data integrations)
- Go to Account → API Keys in your InfoLobby dashboard
- Click Create API Key
- Copy the generated secret — it is only shown once
- Send it as a Bearer token:
Authorization: Bearer il_live_<your_secret>
Personal keys (your notifications, tasks, and data)
- Go to Profile (click your name or avatar)
- Scroll to Personal API Keys
- Click Create Personal API Key
- Copy the generated secret
- Send it as a Bearer token:
Authorization: Bearer il_user_<your_secret>
Authentication
See Authentication for full details.
Rate limits
See Rate Limits. Limits scale with your plan.
Errors
See Errors for the response format and status codes.
Endpoints
- Spaces — list workspaces
- Tables — list tables, fetch schemas
- Records — CRUD and querying
- Comments — read and create record comments
- Files — upload, delete, and download record attachments
- Subscriptions — follow/unfollow tables and records
- Tasks — create, update, and manage tasks
- Notifications — list and manage notifications (personal keys)