/organizations (GET)
GET
/organizations
const url = 'https://example.com/api/v1/organizations?limit=25';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://example.com/api/v1/organizations?limit=25'Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” limit
integer
cursor
string
sort
string
Responses
Section titled “ Responses ”Default Response
Media type application/json
object
Example generated
{ "data": [ { "id": "example", "name": "example", "slug": "example", "createdAt": "2026-04-15T12:00:00Z" } ], "page": { "nextCursor": "example", "hasMore": true }}