Developer Tools
Utilities and tools for developers integrating with Grek Theory
Link Checker
Verify links are working correctly on your site.
Available below →
Rate Limits
Current API has no rate limits for public endpoints.
UnlimitedLink Checker Tool
Verify that links on your website are working. Check single links or batch multiple URLs at once.
Check Single Link
Check Multiple Links
Quick Integration Examples
Fetch All Plants
const response = await fetch('/api/plants');
const data = await response.json();
console.log(data.data); // Array of plantsFetch Filtered Products
const response = await fetch( '/api/products?category=Tools&minPrice=10&maxPrice=50' ); const data = await response.json(); console.log(data.data); // Filtered products
Fetch Single Plant Details
const response = await fetch('/api/plants/monstera-deliciosa');
const data = await response.json();
console.log(data.data); // Plant detailsNeed Help?
For support with the API or developer tools, please visit the API documentation page or contact our support team.
View Full API Docs →