Get started with the Shoal API
https://api.shoal.xyz/v1
curl -X GET "https://api.shoal.xyz/v1/organizations/all?limit=10" \ -H "Authorization: Bearer YOUR_API_KEY"
import requests response = requests.get( "https://api.shoal.xyz/v1/organizations/all", headers={"Authorization": "Bearer YOUR_API_KEY"}, params={"limit": 10} ) data = response.json()
const response = await fetch( "https://api.shoal.xyz/v1/organizations/all?limit=10", { headers: { Authorization: "Bearer YOUR_API_KEY" } } ); const data = await response.json();
{ "limit": 10, "offset": 0, "data": [ { "id": 1, "label": "Organization Name", "cover_image": "url", "aliases": ["Alias1", "Alias2"] } ] }