๐Ÿš€ Supabase Instance

supabase.smartexponent.in - Fully Functional Backend as a Service

๐Ÿ—„๏ธ PostgreSQL Database

Status: Running

Port: 5432

Database: supabase

๐Ÿ”— PostgREST API

Status: Running

๐Ÿ” Authentication

Status: Not Configured

GoTrue service needs additional configuration

Test REST API Refresh Dashboard

๐Ÿงช API Test

Click "Test API Connection" to check API status

๐Ÿ“š Usage Examples

JavaScript Fetch Example:
// 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'
  })
});