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 the principles of modular design and contribute to the 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
                tabindex="0"
                role="region"
                aria-label="javascript code snippet">async function getCard(slug) {
  const response = await fetch(`/api/v1/cards/${slug}/`);
  const data = await response.json();
  console.log(data);
}