ps2_artwork_api/index.html
2025-04-22 18:49:42 +02:00

85 lines
2.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PS2 Game Info & Art API</title>
<style>
body {
margin: 0;
padding: 2rem;
background-color: #121212;
color: #f0f0f0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-align: center;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
p {
font-size: 1.2rem;
margin: 0.5rem 0 2rem 0;
}
a {
text-decoration: none;
color: inherit;
}
code {
background: #1e1e1e;
padding: 0.2em 0.4em;
border-radius: 5px;
color: #a0e0a0;
font-size: 0.95rem;
}
table {
margin: 0 auto;
border-collapse: collapse;
margin-top: 1.5rem;
}
th, td {
border: 1px solid #2a2a2a;
padding: 0.6rem 1rem;
}
th {
background-color: #1e1e1e;
}
td {
background-color: #181818;
}
</style>
</head>
<body>
<h1>🕹️ PS2 Game Info & Art API</h1>
<p>Usage:</p>
<p>
<a href="/search/SLUS_203.12"><code>/search/SLUS_203.12</code></a> Get game info by ID
</p>
<h2>🎨 Artwork Endpoints</h2>
<table>
<thead>
<tr>
<th>Description</th>
<th>Path</th>
</tr>
</thead>
<tbody>
<tr>
<td>Front Cover</td>
<td><a href="/art/SLUS_203.12/SLUS_203.12_COV.png"><code>/art/SLUS_203.12/SLUS_203.12_COV.png</code></a></td>
</tr>
<tr>
<td>Back Cover</td>
<td><a href="/art/SLUS_203.12/SLUS_203.12_COV2.png"><code>/art/SLUS_203.12/SLUS_203.12_COV2.png</code></a></td>
</tr>
<tr>
<td>DVD Icon</td>
<td><a href="/art/SLUS_203.12/SLUS_203.12_ICO.png"><code>/art/SLUS_203.12/SLUS_203.12_ICO.png</code></a></td>
</tr>
</tbody>
</table>
<p>
💬 Have questions, concerns or legal requests? <a href="/contact"><code>/contact</code></a>
</p>
</body>
</html>