Build with us.

The Academy for aspiring Tool Architects

Full API Reference

Browse the complete list of available resources, endpoints, and commands. Everything you need to interact with the PokeDev platform.

Pedagogy First

Unlike standard reference documentation, Sylph Link is designed as an Academy. We believe in learning by building. Our tools and resources are structured to help you understand not just how to use the API, but why it's built that way.

Tool Architecture

Join simple components to create complex tools. Learn how to build Engines, connect them with Bridges, and contribute to the modular ecosystem.

Fetching a Card

RESTful Resources

Every card in the database is accessible via a unique URL. We use standard HTTP methods and return JSON responses.

Try fetching a specific card by its slug to get its details, including stats, moves, and more.

javascript
async function getCard(slug) {
  const response = await fetch(`/api/v1/cards/${slug}/`);
  const data = await response.json();
  console.log(data);
}