Discover/Pinshape API
live

Pinshape APIpinshape.com

Access Pinshape 3D printable model metadata, user profiles, collections, community prints, and comments via 9 structured API endpoints.

Endpoint health
verified 3d ago
get_user_profile
get_user_likes
search_models
get_model_details
get_model_comments
9/9 passing latest checkself-healing
Endpoints
9
Updated
26d ago

What is the Pinshape API?

The Pinshape API provides access to Pinshape.com's catalog of 3D printable models across 9 endpoints, returning structured data on model metadata, community prints, user profiles, and curated collections. The search_models endpoint supports keyword queries with filters for category, pricing, and sort order, while get_model_details returns full model data including tags, file listings, license type, and creator info. Every response uses consistent numeric IDs and slugs that chain naturally across endpoints.

Try it
NSFW filter. 0 excludes NSFW, 1 includes NSFW.
Page number for pagination.
Sort order for results.
Number of items per page.
Search query string.
Pricing filter.
Category name to filter by.
api.parse.bot/scraper/98dc5891-041d-4bb8-91fe-a165dff9b8fa/<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/98dc5891-041d-4bb8-91fe-a165dff9b8fa/search_models?nsfw=0&page=1&sort=most-popular&limit=5&query=robot&pricing=all&category=Art' \
  -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 pinshape-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.

"""Pinshape API — search 3D models, drill into details, explore creators."""
from parse_apis.pinshape_api import Pinshape, Sort, Category, ModelNotFound

client = Pinshape()

# Search for free toy models sorted by popularity
for model in client.models.search(query="robot", sort=Sort.MOST_POPULAR, limit=3):
    print(model.title, model.likes_count, model.download_count)

# Drill into the first result for full details
summary = client.models.search(query="elephant", limit=1).first()
if summary:
    detail = summary.details()
    print(detail.title, detail.license, detail.tags)

    # Browse comments on this model
    for comment in detail.comments.list(limit=3):
        print(comment.username, comment.content[:60])

    # Check community prints
    for p in detail.prints.list(limit=2):
        print(p.username, p.rating, p.print_settings.material_type)

# Fetch a user profile and explore their uploads
user = client.users.get(user_id="1194", username="le-fabshop")
print(user.display_name, user.followers, user.location)

for item in user.models.list(limit=3):
    print(item.title, item.price)

# Browse a collection by constructing it from its ID
coll = client.collection(id="222")
for item in coll.items.list(limit=2):
    print(item.title, item.creator.username)

# Typed error handling for a model lookup
try:
    bad = client.models.search(query="nonexistent_xyz_zzz", limit=1).first()
    if bad:
        bad.details()
except ModelNotFound as exc:
    print(f"Model not found: item_id={exc.item_id}, slug={exc.slug}")

print("exercised: models.search / details / comments.list / prints.list / users.get / user.models.list / collection.items.list")
All endpoints · 9 totalmissing one? ·

Search for 3D printable models by keyword and filters. Returns paginated results with item cards including creator info, pricing, and engagement counts. Omitting the query returns all models matching the specified filters.

Input
ParamTypeDescription
nsfwintegerNSFW filter. 0 excludes NSFW, 1 includes NSFW.
pageintegerPage number for pagination.
sortstringSort order for results.
limitintegerNumber of items per page.
querystringSearch query string.
pricingstringPricing filter.
categorystringCategory name to filter by.
Response
{
  "type": "object",
  "fields": {
    "items": "array of model card objects with id, slug, title, description_snippet, thumbnail, price, likes_count, download_count, creator, and url",
    "pagination": "object with current_page, total_pages, total_items, and has_next"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": "662",
          "url": "https://pinshape.com/items/662-elephant",
          "slug": "elephant",
          "price": "Free",
          "title": "Elephant",
          "creator": {
            "id": "1194",
            "slug": "le-fabshop",
            "username": "le FabShop"
          },
          "thumbnail": "https://mh-pinshape-public.s3.us-west-1.amazonaws.com/uploads/image/file/2632/container_elephant-3d-printing-2632.jpg",
          "likes_count": 2481,
          "download_count": 35382,
          "description_snippet": "We created this cute little articulated elephant last month for our friends i..."
        }
      ],
      "pagination": {
        "has_next": true,
        "total_items": 649,
        "total_pages": 130,
        "current_page": 1
      }
    },
    "status": "success"
  }
}

About the Pinshape API

Model Search and Detail

The search_models endpoint accepts a query string alongside filters for category (e.g. Miniatures, Jewelry + Fashion), pricing (free, paid, or all), sort (most-popular, newest-first, price-low-high, and others), and an nsfw flag. Results come back as paginated item cards with fields including id, slug, title, description_snippet, thumbnail, price, likes_count, download_count, and a nested creator object. The pagination object exposes current_page, total_pages, total_items, and has_next for cursor-free traversal.

get_model_details takes the item_id and slug from search results and returns the full record: description, tags array, files array with filename and size, license string, and likes_count. get_model_comments and get_model_prints both accept item_id and an optional page parameter. Comments include content, username, created_at, likes_count, and threading metadata. Community prints include images, print_settings, rating, and created_at; models with no community makes return an empty prints array.

User Profiles and Collections

get_user_profile accepts a numeric user_id and username slug, returning display_name, followers, following, likes, location, twitter, and website. Optional fields like twitter, website, and location may be absent if the user has not set them. get_user_models and get_user_likes both return paginated item card arrays with the same shape as search_models results, making it straightforward to aggregate a user's full public activity. get_user_likes returns an empty items array for users whose likes are not public.

get_user_collections returns paginated collection objects with id, title, and url. Passing a collection id to get_collection_items retrieves the models inside that collection, again using the standard item card shape with full pagination metadata including has_next and has_prev.

Reliability & maintenanceVerified

The Pinshape API is a managed, monitored endpoint for pinshape.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when pinshape.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 pinshape.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
3d ago
Latest check
9/9 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 3D print discovery feed filtered by category and sorted by most popular downloads
  • Aggregate a designer's full portfolio by chaining get_user_profile with get_user_models
  • Track community engagement on a model by polling get_model_comments and get_model_prints over time
  • Catalog free vs. paid model availability across Pinshape categories using the pricing filter in search_models
  • Mirror a user's curated collections by fetching get_user_collections then get_collection_items for each
  • Extract license metadata from get_model_details to filter models eligible for commercial use
  • Analyze creator influence by comparing followers, likes, and download_count across user profiles
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 Pinshape have an official developer API?+
Pinshape does not publish an official public developer API or documented REST interface. This API on Parse is the structured way to access Pinshape model and community data programmatically.
What does get_model_prints return, and what happens for models with no community makes?+
get_model_prints returns a paginated list of community print objects, each with fields for images, print_settings, rating, description, username, and created_at. For models that have no community makes, the endpoint returns an empty prints array rather than an error, so you can safely call it without checking first.
Can I retrieve actual download URLs or print files for a model?+
The get_model_details endpoint returns a files array with filename and size for each attached file, but it does not return direct download URLs. The API covers metadata, tags, licensing, and creator info. You can fork this API on Parse and revise it to add a download-link endpoint if your use case requires it.
Does the search_models endpoint support filtering by multiple categories at once?+
The category parameter currently accepts a single category value per request (e.g. Art, Gadgets, Miniatures). Filtering across multiple categories simultaneously is not supported in one call. You can fork the API on Parse and revise it to batch multi-category requests or add a multi-value category parameter.
Are there any fields that may be missing from user profile responses?+
Yes. The get_user_profile response includes twitter, website, and location as optional fields that are only present when a user has set them on their profile. Your client code should treat these fields as nullable. The fields id, username, display_name, followers, following, and likes are always returned.
Page content last updated . Spec covers 9 endpoints from pinshape.com.
Related APIs in MarketplaceSee all →
myminifactory.com API
Search and browse 3D models on MyMiniFactory, discover trending designs, explore user collections and categories, and read community comments. Find exactly what you need by searching objects, viewing user profiles, and checking out popular content in real-time.
thingiverse.com API
Search and explore millions of 3D printable models on Thingiverse, view detailed information about designs including specifications and metadata, and discover trending tags to find popular printing categories. Quickly identify the best models for your projects by browsing comprehensive design details and analyzing what the community is printing most.
sketchfab.com API
Search and browse 3D models on Sketchfab, including filtering by category, license, animation, and downloadability. Retrieve detailed model metadata, creator profiles, collections, thumbnails, tags, and viewer configuration options.
cults3d.com API
Search and discover 3D printable models across Cults3D's marketplace, filtering by categories and sorting by popularity metrics like downloads, views, and likes. Access detailed information about specific creations, designer profiles, and engagement data to find the perfect models for your printing projects.
makerworld.com API
Search and discover 3D models on MakerWorld.com. Browse paginated listings or retrieve comprehensive details about specific designs, including titles, preview images, tags, creator info, print profiles, and filament requirements.
grabcad.com API
Search and browse millions of 3D CAD models from the GrabCAD Community Library. Filter by CAD software, sort order, and keyword to find the models you need. Retrieve detailed model information and file listings for any model in the library.
turbosquid.com API
Search and explore millions of 3D models and textures from TurboSquid's marketplace, viewing detailed specifications, pricing, and availability across different categories. Discover free models, filter by your needs, and access comprehensive product information to find the perfect assets for your projects.
furnimesh.com API
Browse and download free 3D furniture models from FurniMesh's extensive library by searching for specific items or exploring curated collections. Access detailed model information and instantly integrate high-quality furniture assets into your design projects.