List all projects
get/v1/projects
Returns a list of all projects you've previously created.
Responses
1{
2 "schema": {
3 "type": "array",
4 "items": {
5 "type": "object",
6 "properties": {
7 "id": {
8 "type": "string",
9 "description": "Id of your project"
10 },
11 "organization_id": {
12 "type": "string",
13 "description": "Slug of your organization"
14 },
15 "name": {
16 "type": "string",
17 "description": "Name of your project"
18 },
19 "region": {
20 "type": "string",
21 "description": "Region of your project",
22 "example": "us-east-1"
23 },
24 "created_at": {
25 "type": "string",
26 "description": "Creation timestamp",
27 "example": "2023-03-29T16:32:59Z"
28 },
29 "database": {
30 "type": "object",
31 "properties": {
32 "host": {
33 "type": "string",
34 "description": "Database host"
35 },
36 "version": {
37 "type": "string",
38 "description": "Database version"
39 }
40 },
41 "required": [
42 "host",
43 "version"
44 ]
45 }
46 },
47 "required": [
48 "id",
49 "organization_id",
50 "name",
51 "region",
52 "created_at"
53 ]
54 }
55 }
56}