Discover/Fine Art America API
live

Fine Art America APIfineartamerica.com

Search millions of artworks, browse artist profiles, retrieve biographies, portfolio images, and contact form data from Fine Art America via 7 REST endpoints.

Endpoint health
verified 3h ago
get_artist_images
search_artworks
get_artist_profile
get_artist_about
get_artist_contact_form
5/6 passing latest checkself-healing
Endpoints
7
Updated
26d ago

What is the Fine Art America API?

The Fine Art America API exposes 7 endpoints covering artwork search, artist directory browsing, profile details, biographies, portfolio images, and artist contact forms. Use search_artworks to run full-text queries across the platform and get back paginated artwork titles, image URLs, and linked artist info. Use get_artist_profile to retrieve social media links, a numeric member ID, and contact form availability for any artist on the site.

Try it
Page number for pagination
Search keyword (e.g. 'landscape', 'abstract', 'portrait')
api.parse.bot/scraper/c3b479f4-3c49-4530-aec5-91ad833812ca/<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/c3b479f4-3c49-4530-aec5-91ad833812ca/search_artworks?page=1&query=landscape' \
  -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 fineartamerica-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.

"""Fine Art America SDK — search artworks, browse artist directory, explore profiles."""
from parse_apis.fine_art_america_api import FineArtAmerica, ArtistNotFound

client = FineArtAmerica()

# Search for landscape artworks (paginated, capped at 5 total items)
for artwork in client.artworks.search(query="landscape", limit=5):
    print(f"Artwork: {artwork.title} — {artwork.url}")

# Browse the artist directory
entry = client.artistdirectoryentries.list(limit=1).first()
print(f"Featured artist: {entry.name}, Location: {entry.location}, Joined: {entry.join_year}")

# Drill into the artist's full profile
artist = entry.profile()
print(f"Profile: {artist.name}, Member ID: {artist.member_id}, Contact: {artist.contact_available}")

# Read the artist's biography
bio = entry.about()
print(f"Bio: {bio.biography[:120]}")

# Browse the artist's artwork portfolio
for image in entry.images(limit=3):
    print(f"  Image: {image.title} — {image.image_url}")

# Get the contact form structure
form = artist.contact_form()
print(f"Form action: {form.action}, Fields: {[f.name for f in form.fields]}")

# Typed error handling for a non-existent artist
try:
    client.artists.get(slug="nonexistent-artist-xyz-99999")
except ArtistNotFound as exc:
    print(f"Not found: {exc.slug}")

print("Exercised: artworks.search / artistdirectoryentries.list / profile / about / images / contact_form / artists.get")
All endpoints · 7 totalmissing one? ·

Full-text search over artworks on Fine Art America. Returns paginated results with artwork titles, URLs, image URLs, and artist info. Results are ordered by relevance. Pagination via integer page counter.

Input
ParamTypeDescription
pageintegerPage number for pagination
queryrequiredstringSearch keyword (e.g. 'landscape', 'abstract', 'portrait')
Response
{
  "type": "object",
  "fields": {
    "page": "integer - current page number",
    "query": "string - the search keyword used",
    "artworks": "array of artwork objects with title, url, image_url, and artist object (name, url)",
    "has_next_page": "boolean - whether more pages are available"
  },
  "sample": {
    "data": {
      "page": 1,
      "query": "landscape",
      "artworks": [
        {
          "url": "https://fineartamerica.com/featured/aspen-sunset-over-bear-lake-colorado-captures.html",
          "title": "Majestic Mountain Lake at Sunset Wall Art",
          "artist": {
            "url": null,
            "name": "Unknown Artist"
          },
          "image_url": "https://render.fineartamerica.com/images/images-profile-flow/400/images/artworkimages/mediumlarge/1/aspen-sunset-over-bear-lake-mike-berenson.jpg"
        }
      ],
      "has_next_page": true
    },
    "status": "success"
  }
}

About the Fine Art America API

Artwork Search and Artist Discovery

The search_artworks endpoint accepts a required query string and an optional integer page parameter. Each response includes an artworks array where every object carries a title, url, image_url, and a nested artist object with name and url. The has_next_page boolean tells you whether additional pages exist. The get_artist_directory endpoint lets you browse all artists or filter by name using the keywords parameter. Each artist record in the returned artists array includes name, location, join_year, url, and slug — the slug is the key input for all profile-level endpoints.

Artist Profile and Portfolio Data

get_artist_profile takes a slug and returns the artist's display name, slug, member_id, profile_url, a social_links object keyed by platform (facebook, instagram, twitter, pinterest), and a contact_available boolean. get_artist_about returns the full biography text from the artist's About tab, or an empty string if none exists. get_artist_images pages through an artist's portfolio, returning up to approximately 24 artworks per page with title, url, and image_url per item.

Contact Form Discovery and Submission

get_artist_contact_form accepts the numeric artist_id from get_artist_profile and returns the form's action path, a fields array (each with name, type, and label), and the recaptcha_sitekey needed for Google reCAPTCHA v2 verification. Once you have a valid captcha token, submit_artist_contact_form accepts name, email, message, subject, artist_id, and captcha_token and returns a confirmation message string. This makes it possible to programmatically contact artists about commissions or inquiries.

Reliability & maintenanceVerified

The Fine Art America API is a managed, monitored endpoint for fineartamerica.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when fineartamerica.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 fineartamerica.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
3h ago
Latest check
5/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 an artwork discovery tool that searches by style keywords and displays results with thumbnail images from search_artworks.
  • Aggregate artist contact details — social links and contact availability — from get_artist_profile for outreach campaigns.
  • Index artist biographies from get_artist_about to power a searchable database of artist backgrounds and statements.
  • Compile full portfolio catalogs by paginating through get_artist_images for multiple artists.
  • Identify which artists have active contact forms using the contact_available field before attempting outreach.
  • Track artist directory data over time — join year, location — by paginating get_artist_directory for market research.
  • Automate commission inquiries by chaining get_artist_contact_form and submit_artist_contact_form with a valid reCAPTCHA token.
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 Fine Art America have an official developer API?+
Fine Art America does not offer a public developer API. There is no documented REST or GraphQL interface for third-party developers on their site.
What does `get_artist_profile` return beyond a name and URL?+
get_artist_profile returns the artist's member_id (numeric string used to query the contact form), a social_links object with keys for facebook, instagram, twitter, and pinterest, and a contact_available boolean indicating whether the artist has enabled a contact form on their profile.
Does the API return artwork pricing or purchase data?+
No pricing or purchase data is currently exposed. The API covers artwork metadata (title, image URL, artist info) from search and portfolio endpoints. You can fork this API on Parse and revise it to add an endpoint that retrieves product or pricing details from individual artwork pages.
How does pagination work across endpoints?+
search_artworks and get_artist_images both accept an integer page parameter and return a has_next_page boolean so you can walk through results. get_artist_directory also accepts page but does not currently return a has_next_page field, so you should increment the page counter until the artists array is empty or shorter than a full page.
Does the API cover artist sales history or follower counts?+
Sales history and follower or engagement counts are not currently returned by any endpoint. Profile data is limited to name, slug, member ID, social links, and contact availability. You can fork this API on Parse and revise it to add endpoints that surface additional profile metrics if they become accessible.
Page content last updated . Spec covers 7 endpoints from fineartamerica.com.
Related APIs in MarketplaceSee all →
artsy.net API
Browse and search across 300,000+ artists to discover detailed profiles with biographies, nationalities, career insights, and artwork counts. Find artists alphabetically or by name to explore their complete creative background and body of work.
riseart.com API
Search and explore artworks by title, artist, or style, then view detailed information and high-quality images of paintings and artist portfolios from Rise Art's curated collection. Discover new artists and browse their complete galleries to find pieces that match your taste.
invaluable.com API
Search and browse fine art auction listings from Invaluable.com, discovering items by artist, auction house, or upcoming lots. Get detailed information about artworks, artists, and auction house catalogs to track pieces and stay informed about upcoming sales.
teepublic.com API
Search and browse products from TeePublic's print-on-demand marketplace, discover artists and their designs, and explore product types and featured creators. Get detailed information about specific products, artist profiles, and curated collections to find the perfect custom apparel and merchandise.
merchbar.com API
Search and discover music merchandise across vinyls, CDs, apparel, and accessories, then track product details, new arrivals, and sales by artist. Find exactly what you're looking for with real-time product information and pricing updates.
christies.com API
Browse and search Christie's auction catalogs to discover artworks, explore lots across live and online auctions, and access detailed information about specific pieces and their departments. Quickly find auction results, compare items, and research private sales all in one place.
filmfreeway.com API
Search and discover film festivals worldwide with detailed information including deadlines, submission categories, fees, rules, and organizer contacts. Access comprehensive festival profiles, photos, and grant opportunities listed on FilmFreeway.
openclipart.org API
Search and discover clipart from OpenClipart, explore collections by tag, and retrieve detailed metadata including artist profiles, engagement metrics, and download URLs. Also exposes site-wide statistics such as total clipart count, artist count, and recent upload activity.