supabase.smartexponent.in - Fully Functional Backend as a Service
Status: Running
Port: 5432
Database: supabase
Status: Not Configured
GoTrue service needs additional configuration
// Get all records from a table
fetch('https://supabase.smartexponent.in/rest/v1/your_table')
.then(response => response.json())
.then(data => console.log(data));
// Insert a record
fetch('https://supabase.smartexponent.in/rest/v1/your_table', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Prefer': 'return=representation'
},
body: JSON.stringify({
name: 'Example',
description: 'This is a test record'
})
});