Discover/Palace Skateboards API
live

Palace Skateboards APIshop-eu.palaceskateboards.com

Access Palace Skateboards EU product listings, category filters, inventory status, size charts, and detailed specs via 4 structured REST endpoints.

Endpoint health
verified 4d ago
get_all_categories
get_all_products
get_products_by_category
get_product_details
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the Palace Skateboards API?

The Palace Skateboards EU Shop API gives developers structured access to the full EU product catalog across 4 endpoints, covering product listings, category-filtered results, and detailed per-product data including size charts and technical specifications. The get_product_details endpoint returns available sizes with individual pricing, image arrays, and description text for any product identified by its handle.

Try it

No input parameters required.

api.parse.bot/scraper/b8930050-2616-400b-bbec-fb2a2f6d37e0/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/b8930050-2616-400b-bbec-fb2a2f6d37e0/get_all_products' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace shop-eu-palaceskateboards-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.palace_skateboards_api_eu import Palace, Category_

palace = Palace()

# List all categories
for cat in palace.categories.list():
    print(cat.name, cat.slug)

# Get products from the jackets category
for item in palace.productsummaries.by_category(category=Category_.JACKETS):
    print(item.name, item.price, item.sold_out)

# Get full product details for the first jacket
product = palace.products.get(handle="pvszem47l8b7")
print(product.name, product.currency, product.sold_out)
for size in product.available_sizes:
    print(size.size, size.price, size.available)
All endpoints · 4 totalmissing one? ·

Get all products from the featured/default collection. Returns product names, prices, availability, and handles. Equivalent to fetching the 'all' category.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "count": "integer total number of products returned",
    "products": "array of product objects with name, price, currency, sold_out, product_url, and handle"
  },
  "sample": {
    "data": {
      "count": 30,
      "products": [
        {
          "name": "EVEN FASTER JACKET BLUE",
          "price": "328.0",
          "handle": "pvszem47l8b7",
          "currency": "EUR",
          "sold_out": false,
          "product_url": "https://shop-eu.palaceskateboards.com/products/pvszem47l8b7"
        }
      ]
    },
    "status": "success"
  }
}

About the Palace Skateboards API

What the API Covers

The API surfaces data from the Palace Skateboards EU storefront (shop-eu.palaceskateboards.com). Four endpoints cover the full browse-and-inspect workflow: list all products, filter by category, retrieve per-product details, and enumerate available categories. All prices are returned in EUR.

Browsing and Filtering Products

get_all_products returns the featured/default collection with no required parameters — each product object includes name, price, currency, sold_out, product_url, and handle. get_products_by_category accepts a required category slug (e.g. jackets, hoods, tracksuits, bottoms) and returns the same product shape filtered to that collection. Use get_all_categories to retrieve current category name, url, and slug values so you always have valid slugs on hand.

Product Detail Data

get_product_details takes a handle string — sourced from any product listing response — and returns the full detail record: available_sizes (each with size, price, and available flag), technical_details as an array of specification lines, description as an array of text lines, an images array of URLs, and a size_chart object with measurements and variant names when the product carries one. The sold_out boolean at the top level reflects overall availability independent of individual size stock.

Reliability & maintenanceVerified

The Palace Skateboards API is a managed, monitored endpoint for shop-eu.palaceskateboards.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when shop-eu.palaceskateboards.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official shop-eu.palaceskateboards.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Monitor Palace EU restock events by polling get_all_products and comparing sold_out flags over time
  • Build a size-aware availability tracker using available_sizes from get_product_details
  • Aggregate Palace EU category listings to compare pricing across jackets, tracksuits, and shorts
  • Render size chart measurements for Palace EU garments in a fit-guide tool using the size_chart field
  • Sync Palace EU product handles and URLs into a wishlist or price-alert service
  • Extract technical_details lines to populate structured product metadata in a skatewear database
  • Enumerate all current categories via get_all_categories to keep navigation slugs up to date in a third-party storefront integration
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Palace Skateboards offer an official developer API?+
Palace Skateboards does not publish an official public developer API for their EU shop. There is no documented API, OAuth flow, or developer portal listed on their site.
What does `get_product_details` return beyond the basic listing fields?+
get_product_details extends the listing data with available_sizes (an array of objects each containing size, price, and available), technical_details (an array of spec lines), description (an array of text lines), an images array of full-size URLs, and a size_chart object containing measurements and variant names — or null when no size chart is present for that product.
Does the API cover Palace Skateboards' US shop or other regional storefronts?+
Not currently. The API covers only the EU shop at shop-eu.palaceskateboards.com, with prices in EUR. You can fork this API on Parse and revise it to point at the US storefront or other regional domains to add that coverage.
Are product reviews or customer ratings returned by any endpoint?+
Not currently. The API returns inventory, pricing, sizing, technical specifications, and descriptions, but does not include customer reviews or ratings. You can fork the API on Parse and revise it to add a reviews endpoint if that data is accessible on the product pages.
Does `get_products_by_category` support pagination for large categories?+
The endpoint returns a count integer alongside the full products array in a single response. There are no pagination parameters (page, limit, offset) exposed at this time. You can fork the API on Parse and revise it to add pagination support for categories that return large product sets.
Page content last updated . Spec covers 4 endpoints from shop-eu.palaceskateboards.com.
Related APIs in EcommerceSee all →
stadiumgoods.com API
Search and discover premium sneakers and streetwear from Stadium Goods. Retrieve detailed product specifications, variant-level pricing, and real-time inventory status across the full catalog and curated collections.
adidas.de API
Search and browse Adidas products on adidas.de to find detailed information about items, availability, pricing, and specific categories. Get comprehensive product details including size availability and stock levels across the German Adidas store.
cropp.com API
Browse Cropp's clothing catalog by searching for products, exploring categories, and viewing detailed product information. Retrieve current prices, discounts, and active promotions available across the store.
amiparis.com API
Browse Ami Paris products, collections, and search their catalog to find items by name or discover new arrivals and signature collections. Access detailed product information including variants, images, and pricing across all available collections.
solebox.com API
Browse Solebox's sneaker and apparel collection to find products by brand, name, price, and images, with options to filter by price range, brand, and sorting preferences. Check real-time availability and pricing across their full catalog to discover and compare items that match your style.
supreme.com API
Access real-time Supreme shop status, browse current and upcoming product listings with previews, and explore collections by category. Discover Supreme news, lookbooks, seasonal releases, and find store locations worldwide.
aliexpress.com API
Search for products across AliExpress and instantly access detailed information including product specs, customer reviews, and pricing to make informed purchasing decisions. Browse through product categories and retrieve complete product data directly from URLs to compare options and find exactly what you're looking for.
stylishop.com API
Browse and search stylishop.com's complete fashion catalog, including products, categories, brands, reviews, and trending data to discover new arrivals and sale items. Get product details, size guides, autocomplete suggestions, and trending search insights to enhance your shopping experience.