Skip to main content
GET
/
projects
List accessible projects
curl --request GET \
  --url https://integrations.wellows.com/api/v1/projects \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "message": "Projects retrieved successfully",
  "code": 200,
  "data": {
    "projects": [
      {
        "id": 1,
        "name": "my-project",
        "display_name": "My Project",
        "domain": "example.com",
        "region": "US",
        "language": "en",
        "status": "active",
        "created_at": "2024-01-15T10:30:00Z"
      }
    ],
    "total": 1
  },
  "errors": {},
  "meta_data": {}
}

Authorizations

X-API-Key
string
header
required

Your API key from the API Keys page

Response

Projects retrieved successfully

success
boolean
Example:

true

message
string
Example:

"Projects retrieved successfully"

code
integer
Example:

200

data
object
errors
object
meta_data
object