We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab89568 commit a1ee3beCopy full SHA for a1ee3be
README.md
@@ -2,11 +2,18 @@
2
3
A RESTful API for managing your Postgres. Fetch tables, add roles, and run queries (and more).
4
5
-## Docs
+## Usage
6
7
-All docs https://supabase.github.io/pg-api/
+Full documentation: https://supabase.github.io/pg-api/
8
+
9
+A trial API is set up here: https://pg-api.fly.dev/. To use this with your own Postgres database, pass a `pg` header. Example:
10
11
+```bash
12
+curl -X GET \
13
+ 'https://pg-api.fly.dev/config/version' \
14
+ -H 'pg: { "password":"YOUR_PASSWORD", "host": "YOUR_DB_URL" } '
15
+```
16
-A trial API is set up here: https://pg-api.fly.dev/
17
18
## Quickstart
19
0 commit comments