Discover/Patagonia API
live

Patagonia APIpatagonia.com

Access Patagonia's product catalog, pricing, variants, customer reviews, store locations, and Worn Wear used gear via 6 structured API endpoints.

Endpoint health
verified 7d ago
find_stores
get_worn_wear_products
get_product_details
search_products
get_category_products
6/6 passing latest checkself-healing
Endpoints
6
Updated
21d ago

What is the Patagonia API?

The Patagonia API gives developers access to 6 endpoints covering the full Patagonia product catalog, customer reviews, retail store locations, and Worn Wear used gear listings. Use search_products to run full-text queries across the catalog, get_product_details to retrieve per-color pricing, size variants, materials, and specs for any style number, or find_stores to locate nearby Patagonia stores and authorized dealers by latitude and longitude.

Try it
Number of results per page.
Search keyword (e.g. 'backpack', 'jacket', 'fleece').
Offset for pagination (increments by sz value each page).
api.parse.bot/scraper/21a6a97f-f1d8-47f8-a022-981ba58f1cd1/<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/21a6a97f-f1d8-47f8-a022-981ba58f1cd1/search_products?sz=12&query=jacket&start=0' \
  -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 patagonia-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.patagonia_api import Patagonia, Product, ProductDetail, Review, Store, WornWearProduct

client = Patagonia()

# Search the catalog for jackets
for product in client.products.search(query="jacket", sz=12, limit=5):
    print(product.pid, product.name, product.price, product.category)

# Get full details for a specific product
detail = client.products.get(pid="84213").details()
print(detail.name, detail.fit, detail.materials)
for variant in detail.variants:
    print(variant.display_name, variant.swatchable)

# Browse reviews for a product
product_inst = client.product(pid="84213")
for review in product_inst.reviews.list(per_page=5, limit=10):
    print(review.score, review.title, review.user.display_name, review.created_at)

# Browse a category
for item in client.products.by_category(category_id="mens-jackets-vests", limit=5):
    print(item.pid, item.name, item.brand)

# Find nearby stores
for store in client.stores.find(lat=40.7128, lng=-74.006, limit=3):
    print(store.name, store.address, store.city, store.state, store.distance)

# Browse Worn Wear used products
for used in client.wornwearproducts.list(limit=3):
    print(used.title, used.handle, used.variants[0].price, used.variants[0].compare_at_price)
All endpoints · 6 totalmissing one? ·

Full-text search across the Patagonia product catalog. Returns paginated product listings with name, price, brand, and category. Pagination is offset-based: advance by incrementing start by sz each page. The response includes has_next to signal more results and next_start for the next offset value.

Input
ParamTypeDescription
szintegerNumber of results per page.
queryrequiredstringSearch keyword (e.g. 'backpack', 'jacket', 'fleece').
startintegerOffset for pagination (increments by sz value each page).
Response
{
  "type": "object",
  "fields": {
    "total": "integer count of products returned in this page",
    "has_next": "boolean indicating if more results are available",
    "products": "array of product objects with pid, name, price, brand, category, variant",
    "next_start": "integer offset for next page, or null if no more results"
  },
  "sample": {
    "data": {
      "total": 36,
      "has_next": true,
      "products": [
        {
          "pid": "49266",
          "name": "Black Hole® Mini MLC® 30L",
          "brand": "Patagonia",
          "price": 199,
          "variant": null,
          "category": "Bags"
        }
      ],
      "next_start": 36
    },
    "status": "success"
  }
}

About the Patagonia API

Product Search and Category Browsing

The search_products endpoint accepts a query string and returns paginated product listings — each with a pid, name, price, brand, category, and variant. Pagination is offset-based: pass start and sz to step through results, and use the has_next boolean and next_start field to detect and fetch subsequent pages. The get_category_products endpoint works identically but scopes results to a category slug such as mens-jackets-vests or womens-fleece, matching the URL slugs visible on patagonia.com.

Product Details and Reviews

get_product_details takes a pid (style number from search or category results) and returns a detailed product object: per-color price objects with both sales and list prices, images keyed by color code, a variants array covering color and size attributes, a specs array of title/content pairs, and materials and fit strings. get_product_reviews fetches Yotpo-sourced reviews for the same pid, returning each review's score, content, title, createdAt, and user info, plus a bottomline object with averageScore, totalReview, and starDistribution.

Store Locator and Worn Wear

find_stores accepts a lat/lng coordinate pair and an optional dist radius in miles, returning an array of store markers with name, address, city, state, phone, distance, today_hours, and status_label indicating open or closed status. get_worn_wear_products returns up to 50 current listings from Patagonia's Worn Wear used gear program, including condition tags on each variant, price, and compare_at_price for calculating savings relative to original retail.

Reliability & maintenanceVerified

The Patagonia API is a managed, monitored endpoint for patagonia.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when patagonia.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 patagonia.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
7d ago
Latest check
6/6 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
  • Build a gear comparison tool using per-color pricing and size variants from get_product_details
  • Track price changes across the Patagonia catalog by polling search_products or get_category_products
  • Aggregate customer sentiment by pulling averageScore and starDistribution from get_product_reviews
  • Display nearby Patagonia stores on a map using lat/lng and today_hours from find_stores
  • Surface discounted used gear by comparing price and compare_at_price in get_worn_wear_products results
  • Populate a product feed filtered by category using get_category_products with a specific category_id slug
  • Monitor in-stock size and color availability by parsing the variants array from get_product_details
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 Patagonia have an official developer API?+
Patagonia does not publish a public developer API or offer API access through an official developer program as of mid-2025.
What does get_product_details return beyond basic price and name?+
The endpoint returns a price object keyed by color code (with separate sales and list prices), an images object also keyed by color code, a variants array with available colors and sizes, a specs array of structured title/content pairs, and plain-text fields for materials, fit, description, and style_number.
How does pagination work across search and category endpoints?+
Both search_products and get_category_products use offset-based pagination. Pass start (the offset) and sz (page size) together. The response includes has_next (boolean) and next_start (integer or null) so you can loop until has_next is false without needing to track total count manually.
Does the Worn Wear endpoint support pagination or filtering by condition or category?+
get_worn_wear_products returns up to 50 listings in a single response with no pagination parameters and no built-in filtering by condition, category, or price. Condition data is present as tags on each variant, so client-side filtering is possible. You can fork this API on Parse and revise it to add pagination or server-side filtering if your use case requires broader or narrower result sets.
Are wishlist, order history, or account-level data covered?+
No account-level data — wishlists, order history, loyalty status, or saved addresses — is exposed. The API covers the public product catalog, reviews, store locations, and Worn Wear listings. You can fork it on Parse and revise to add any additional public-facing endpoints you need.
Page content last updated . Spec covers 6 endpoints from patagonia.com.
Related APIs in EcommerceSee all →
rei.com API
Search and browse REI's full catalog of outdoor gear and clothing, compare detailed product specifications, check real-time store availability, and read customer reviews to find the perfect equipment for your adventures. Explore products by category or use targeted searches to discover gear that matches your needs, all with instant access to pricing and local stock information.
gap.com API
Search and browse Gap's product catalog by keyword or category, retrieve detailed product information including pricing, available sizes, colors, and customer reviews, get product recommendations, locate nearby Gap retail stores, and explore the full site navigation and category tree.
backcountry.com API
backcountry.com API
thenorthface.com API
Search and browse The North Face's full product catalog by category, then access detailed information including specifications, pricing, and real-time inventory levels for any item. Find exactly what you're looking for with powerful product search and get complete product details in one place.
columbia.com API
Search and browse Columbia Sportswear products with detailed specifications, pricing, and real-time availability information. Access comprehensive product data including technical features, fabric details, customer reviews, fit information, and high-quality images to make informed purchasing decisions.
petco.com API
Browse and search the Petco product catalog, retrieve product details and customer reviews, get search suggestions, find nearby store locations, and discover current deals and promotions.
argos.co.uk API
argos.co.uk API
gapcanada.ca API
Browse Gap Canada's complete product catalog across all departments and retrieve detailed product information including sizing charts and current pricing. Get category listings, search specific products, and access comprehensive product details to compare styles and availability.