Supabase API Database, Storage, Auth & Project Management avatar

Supabase API Database, Storage, Auth & Project Management

Pricing

from $0.01 / 1,000 results

Go to Apify Store
Supabase API Database, Storage, Auth & Project Management

Supabase API Database, Storage, Auth & Project Management

Access Supabase programmatically through this comprehensive API actor. Query and manage PostgreSQL databases, handle file storage, manage authentication users, and control projects - all through a single interface.

Pricing

from $0.01 / 1,000 results

Rating

0.0

(0)

Developer

The Howlers

The Howlers

Maintained by Community

Actor stats

0

Bookmarked

8

Total users

1

Monthly active users

7 days ago

Last modified

Share

Supabase API - Database, Storage, Auth & Project Management

Access Supabase programmatically. Query and manage databases, upload/download files from storage, manage authentication users, and control projects. Perfect for database automation, data migration, backup workflows, and Supabase-powered app integrations.

BYOK (Bring Your Own Key) -- you provide your own API credentials.


Before You Start

This actor requires your own API credentials to fetch real data.

Where to get your key: Password for create_user operation

You can test with Demo Mode first (free, no key needed) to see the output format before committing.


Quick Start

Test with Demo Mode (free, no API key needed)

{
"demoMode": true,
"fileUrl": "https://example.com",
"supabaseUrl": "https://example.com"
}

Run with real data

{
"demoMode": false,
"task": "list_projects",
"fileUrl": "https://example.com",
"userPassword": "YOUR_API_KEY_HERE",
"limit": 100,
"offset": 0,
"supabaseUrl": "https://example.com",
"supabaseKey": "YOUR_API_KEY_HERE",
"managementToken": "YOUR_API_KEY_HERE"
}

Input Parameters

ParameterTypeDefaultRequiredDescription
taskstring"list_projects"Yes*The operation to perform on Supabase
projectRefstring-NoSupabase project reference ID (from your project URL: https://<project_ref>.supabase.co)
tableNamestring-NoDatabase table name for query/insert/update/delete operations
querystring-NoPostgREST query filters (e.g., 'id=eq.5', 'name=ilike.john', 'created_at=gte.2024-01-01')
selectColumnsstring-NoColumns to return (comma-separated, e.g., 'id,name,email'). Leave empty for all columns.
orderBystring-NoColumn to sort by (e.g., 'created_at.desc', 'name.asc')
datastring-NoJSON data for insert/update operations. For insert: [{...}] or {...}. For update: {...}
sqlQuerystring-NoRaw SQL query to execute (for run_sql task). Use with caution!
bucketNamestring-NoStorage bucket name for file operations
filePathstring-NoFile path within the bucket (e.g., 'folder/image.png')
fileUrlstring-NoPublic URL of file to upload (for upload_file task)
userIdstring-NoUser UUID for get_user or delete_user operations
userEmailstring-NoEmail address for create_user operation
userPasswordstring-Yes*Password for create_user operation
limitinteger100NoMaximum number of results to return
offsetinteger0NoResults offset for pagination
supabaseUrlstring-NoYour Supabase project URL (https://<project_ref>.supabase.co)
supabaseKeystring-Yes*Supabase anon key (for public operations) or service_role key (for admin operations)
managementTokenstring-Yes*Personal Access Token for Management API (list_projects, get_project, get_project_settings)
webhookUrlstring-NoURL to receive results via webhook for automation platforms
demoModebooleantrueNoRun with sample data for testing (no API calls made)

*Required when Demo Mode is off.


Pricing

This actor uses pay-per-event billing:

EventDescriptionPrice
API RequestEach Supabase API request completed$0.01

Demo mode is free -- no charges for sample data.


Troubleshooting

"API key is required"

You have Demo Mode turned off but didn't provide an API key. Either:

  • Turn Demo Mode on to test with sample data
  • Add your API key in the input

"API error 403" or "Unauthorized"

Your API key is invalid, expired, or doesn't have access to this specific API endpoint. Double-check your key and account permissions.

"API error 429" or "Rate limit"

Too many requests. Wait a minute and try again, or reduce the number of items per run.

No results or empty dataset

Check the run log for error messages. Common causes:

  • Invalid input format (check the examples above)
  • API key without proper permissions
  • The target data doesn't exist or is too small to track

How do I test without an API key?

Enable Demo Mode in the input. This returns realistic sample data so you can verify the output format works for your workflow.


Built by John Rippy | Actor Arsenal