Critical API Issues Making Development Nearly Impossible
After months of working with Glide API, I need to highlight critical issues that make it almost unusable for serious development:
Problem 1: Encrypted Column Names
API returns completely unreadable column names:
json
{
"Name": "John Doe", // Only this is readable
"jGa1O": "john@email.com", // What is jGa1O?!
"H76kQ": "+1234567890", // What is H76kQ?!
"TibYN": "New York" // What is TibYN?!
}
This makes code completely unmaintainable.
Problem 2: Zero Computed Columns Support
- Relations = Missing
- Lookups = Missing
- Math columns = Missing
- Templates = Missing
50% of our app functionality is invisible to API!
Real Impact on Development:
- 3x longer development time
- Unmaintainable code with cryptic IDs
- Complex workarounds required for basic functionality
- Cannot build reliable integrations
What I’m Forced to Do:
- Hit undocumented schema endpoint for column mapping
- Use webhooks to capture computed values
- Build complex abstraction layers
- Maintain manual documentation of every column ID
This is NOT sustainable for production apps.
URGENT Feature Requests:
1. Readable Column Names
json
// Add API parameter: ?readable_names=true
{
"customer_name": "John Doe", // Clear!
"customer_email": "john@email.com", // Obvious!
"customer_phone": "+1234567890" // Perfect!
}
2. Computed Columns Support
json
// Add API parameter: ?include_computed=true
{
"customer_name": "John Doe",
"order_count": 5, // From rollup
"total_spent": 1250.00, // From math
"last_order": "2024-06-12" // From lookup
}
Why This Matters:
Glide has incredible UI/UX but the API is killing developer adoption.
Companies choose other platforms solely because of API limitations, despite preferring Glide’s interface.
Please prioritize this! The community desperately needs these basic API features.
Current Status:
Beautiful apps in Glide
Cannot integrate with external systems
Cannot build automation
Cannot scale beyond simple use cases
Who else is struggling with these API limitations?
Glide team - can we get timeline estimates for these critical features?