One Piece
API Reference
Cards
The One Piece TCG API allows you to retrieve information about cards, expansions, and more.
- Detailed card attributes
- Support for multiple languages
- Real-time pricing data
Use these endpoints to integrate One Piece card data into your application.
Example Requests
curl -X GET 'https://api.scrydex.com/onepiece/v1/cards' \
-H 'X-Api-Key: YOUR_API_KEY' \
-H 'X-Team-ID: YOUR_TEAM_ID'
require 'httparty'
response = HTTParty.get('https://api.scrydex.com/onepiece/v1/cards', headers: {
'X-Api-Key' => 'YOUR_API_KEY',
'X-Team-ID' => 'YOUR_TEAM_ID'
})