Cards (Technologies)
Individual units of your stack. Languages, frameworks, and libraries are consistent entities.
Individual units of your stack. Languages, frameworks, and libraries are consistent entities.
Cards belong to Sets. Explore defined stacks like 'Django' or 'SvelteKit'.
Check version support, LTS status, and deprecations to keep your stack fresh.
Verify stack compliance. Rules defining which technologies work best together.
Browse the complete list of available resources, endpoints, and commands. Everything you need to interact with the PokeDev platform.
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.
Join simple components to create complex tools. Learn how to build Engines, connect them with Bridges, and contribute to the modular ecosystem.
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.
async function getCard(slug) {
const response = await fetch(`/api/v1/cards/${slug}/`);
const data = await response.json();
console.log(data);
}