Internal Tool on Baserow (No-Code Database)

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Showing 1 of 1 servicesAll 2065 services
Internal Tool on Baserow (No-Code Database)
Simple
from 1 business day to 3 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Developing Internal Tools with Baserow (No-Code Database)

Baserow is an open-source no-code database with an interface similar to Airtable. Teams use Baserow to manage data without SQL knowledge: CRM tables, content calendars, task registries, supplier databases.

How Baserow Differs from Airtable

Baserow Airtable
Self-hosted Yes No
Open-source MIT No
API REST + webhooks REST
Price Free self-hosted From $20/month
Integrations Via API/Zapier Built-in

Installation

# Fastest way
docker run -v baserow_data:/baserow/data \
  -p 80:80 -p 443:443 \
  baserow/baserow:1.25.0

Data Structure

Baserow is a spreadsheet-like interface on top of PostgreSQL. Each "base" is a set of tables, each table is a set of rows with typed columns.

Field types: Text, Long Text, Number, Rating, Boolean, Date, URL, Email, Phone, File, Single Select, Multiple Select, Link to Table (foreign key), Formula, Lookup, Count, Rollup.

REST API

Baserow provides a full REST API:

# Get table rows
curl -X GET \
  "https://baserow.example.com/api/database/rows/table/TABLE_ID/?user_field_names=true" \
  -H "Authorization: Token YOUR_API_TOKEN"

# Create row
curl -X POST \
  "https://baserow.example.com/api/database/rows/table/TABLE_ID/?user_field_names=true" \
  -H "Authorization: Token YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"Name": "John Smith", "Status": "New", "Email": "[email protected]"}'

# Filtering
curl "https://baserow.example.com/api/database/rows/table/TABLE_ID/?filter__field_id__equal=active"

Webhooks

// Webhook on row creation (for notifications)
{
  "url": "https://your-api.com/webhook/baserow",
  "events": ["rows.created", "rows.updated"],
  "headers": [
    { "name": "X-Webhook-Token", "value": "secret-token" }
  ]
}
// Webhook handler on your server
app.post('/webhook/baserow', (req, res) => {
  const { event_type, row_id, values } = req.body;

  if (event_type === 'rows.created') {
    // New lead — create task in CRM
    crmService.createLead({
      name: values['Name'],
      email: values['Email'],
      source: 'Baserow'
    });
  }

  res.sendStatus(200);
});

Typical Use Cases

  • Small business CRM — contacts table linked to deals table
  • Content calendar — editorial calendar with fields: article, author, status, publication date
  • Supplier registry — database with documents, contacts, and order history
  • Bug tracker — task table with filters by sprint, status, assignee

Timeline

Setup base with 3–5 tables and relationships + API integration — 1–3 days.