Skip to main content
GET
/
api
/
ecosystems
List all active ecosystems
curl --request GET \
  --url https://api.example.com/api/ecosystems \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "slug": "<string>",
      "name": "<string>",
      "description": "<string>",
      "filter": "<string>",
      "region": "<string>",
      "image_url": "<string>",
      "partner_logos": [
        {
          "name": "<string>",
          "url": "<string>",
          "image_url": "<string>"
        }
      ],
      "tabs_config": {},
      "is_active": true,
      "sort_order": 123
    }
  ],
  "page": {
    "limit": 123,
    "offset": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

Auth0 JWT access token

Query Parameters

limit
string

Number of results to return (1-2000, default 25)

Example:

"25"

offset
string
Example:

"0"

Response

200 - application/json

List of active ecosystems

data
object[]
required
page
object
required