Skip to main content

Quick Start

LyteCMS offers a lot of flexibility. Whether you want to go fast and quickly see the final result, or would rather dive deeper into the product, we got you covered. For this tutorial, we'll go for the DIY approach and build a project and data structure from scratch

🚀 Step 1: Create your project​

On your dashboard page, click "New base" button to create a new base.

Once the base is created, you'll be redirected to table editor of the base.

Fill some fields and data to get start.

nametypedescription
test nameSOME TYPEdescription

🚀 Step 2: Fetch your data from API​

Get your table ID:

Right click your table name, select "copy ID"

LyteCMS provides you with an API to fetch your data from your backend.

// Fetch data from API
fetch("https://www.lytecms.com/api/v1/records?table=<YourTableID>")
.then((response) => response.json())
.then((json) => {
// Do something with the data
});

You'll get your data in JSON format.

{
"data": [
{
"id": 1,
"name": "test name",
"type": "SOME TYPE",
"description": "description"
}
]
}