Discover/Clios API
live

Clios APIclios.com

Access Clio Awards winner data across verticals, seasons, and award levels. Filter specialty awards, Of the Year honorees, and gallery entries via 7 endpoints.

Endpoint health
verified 4d ago
get_oty_of_the_year_winners
get_specialty_winner_detail
get_specialty_oty_winners
get_specialty_oty_winners_filtered
get_winners_gallery_filtered
7/7 passing latest checkself-healing
Endpoints
7
Updated
26d ago

What is the Clios API?

The Clios.com API exposes 7 endpoints covering winner data from the Clio Awards ecosystem, including specialty honorees, 'Of the Year' organizational awards, and a paginated winners gallery. The get_winners_gallery_filtered endpoint alone returns fields like winner_name, project_name, award_level, vertical, location, and year, filterable by season, vertical, and award tier. It also provides discovery utilities via list_verticals and list_seasons to enumerate valid filter values before querying.

Try it

No input parameters required.

api.parse.bot/scraper/5c52dff9-b17c-4c5c-968b-a62b92ffc4a8/<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/5c52dff9-b17c-4c5c-968b-a62b92ffc4a8/get_specialty_oty_winners' \
  -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 clios-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.

"""Walkthrough: Clios.com Awards SDK — browse honorees, gallery entries, and verticals."""
from parse_apis.clios_com_awards_api import Clios, AwardLevel, WinnerNotFound

client = Clios()

# List all specialty honorees across verticals and seasons.
for honoree in client.honorees.list(limit=5):
    print(honoree.winner_name, honoree.vertical, honoree.award_type)

# Filter specialty honorees by vertical and season.
music_honoree = client.honorees.search(vertical="Clio Music", season="2026", limit=1).first()
if music_honoree:
    # Drill into the honoree's full profile via sub-resource.
    profile = music_honoree.profile.get()
    print(profile.name, profile.award_type, profile.year, profile.job_title)

# Organizational "Of The Year" awards (Agency OTY, Network OTY, etc.)
for oty in client.honorees.list_oty(limit=3):
    print(oty.winner_name, oty.award_type)

# Search the Winners Gallery with an award-level enum filter.
for entry in client.galleryentries.search(vertical="Clio Awards", season="2024", award=AwardLevel.GRAND, limit=3):
    print(entry.project_name, entry.award_level, entry.location)

# Typed error handling on a detail fetch.
try:
    gone = client.honoree(detail_url="https://clios.com/specialty-oty-awards/clio-music/2026/nonexistent/").profile.get()
except WinnerNotFound as exc:
    print(f"Profile removed: {exc.url}")

# Discover available verticals and seasons.
for v in client.verticals.list(limit=5):
    print(v.id, v.name)

print("exercised: honorees.list / honorees.search / honoree.profile.get / honorees.list_oty / galleryentries.search / verticals.list")
All endpoints · 7 totalmissing one? ·

Retrieve all specialty award winners from the specialty-oty section. Returns individual honorees and specialty award recipients across all verticals and seasons. A single-page response; no pagination parameters needed.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "winners": "array of honoree objects each with winner_name, vertical, award_type, detail_url, and image_url"
  },
  "sample": {
    "data": {
      "winners": [
        {
          "vertical": "Clio Health",
          "image_url": "https://media.clios.com/wp-content/uploads/2026/06/08134029/CH26_2x1_extended.jpg",
          "award_type": "Impact Award",
          "detail_url": "https://clios.com/specialty-oty-awards/clio-health/2026/calvin-anderson/",
          "winner_name": "Calvin Anderson"
        }
      ]
    },
    "status": "success"
  }
}

About the Clios API

What the API Covers

The Clios.com API surfaces winner records across multiple award programs — Clio Awards, Clio Music, Clio Sports, Clio Entertainment, Clio Fashion & Beauty, Brand Storytelling, and Clio Creator. Data is organized around two distinct award tracks: specialty and 'Of the Year' honorees (individuals and organizations) via get_specialty_oty_winners and get_oty_of_the_year_winners, and the broader winners gallery accessible through get_winners_gallery_filtered.

Filtering and Discovery

Before running filtered queries, call list_verticals to get current vertical IDs and names (formatted as 'Clio Awards 2024') and list_seasons to retrieve available award years ordered newest first. Pass those values into get_specialty_oty_winners_filtered using the vertical and season parameters, or into get_winners_gallery_filtered which additionally accepts page, award (tier values include Shortlist, Bronze, Silver, Gold, Grand, Winner), and keywords. Note that keyword search on the source site requires authentication and may not return results through this endpoint.

Detail Records

get_specialty_winner_detail accepts a full detail page URL (e.g. a path under /specialty-oty-awards/clio-music/2026/) and returns structured fields: name, year, vertical, job_title, award_type, description, and html_content. Fields like job_title and description are nullable when the source page omits them. The winners gallery returns paginated results with a has_more boolean to drive pagination loops using the page parameter.

Reliability & maintenanceVerified

The Clios API is a managed, monitored endpoint for clios.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when clios.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 clios.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
7/7 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
  • Track which agencies won Agency of the Year across multiple Clio seasons using get_oty_of_the_year_winners
  • Build a creative benchmark database by pulling Gold and Grand winners from get_winners_gallery_filtered filtered by vertical and year
  • Enrich a brand research tool with Clio-winning campaign names and project details using the project_name and award_level fields
  • Generate a ranked shortlist of award-winning creative work in a specific vertical (e.g. Clio Music) for a given season
  • Power a competitive intelligence dashboard showing which locations and agencies appear most frequently in winner records
  • Populate an awards history profile for a company by matching winner_name across specialty and gallery endpoints
  • Enumerate all available verticals and seasons programmatically before building a filtered query pipeline
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 Clios.com have an official public developer API?+
Clios.com does not publish an official public developer API or documented data access program as of mid-2025.
How does `get_winners_gallery_filtered` differ from the specialty endpoints?+
get_winners_gallery_filtered covers the broad winners gallery with fields like project_name, award_level, and location, and supports pagination via page with a has_more flag. The specialty endpoints (get_specialty_oty_winners, get_oty_of_the_year_winners) are scoped to the specialty-oty section and return individual honorees and organizational award recipients without pagination. Both share the winner_name, vertical, award_type, detail_url, and image_url fields.
Does keyword search work in `get_winners_gallery_filtered`?+
The keywords parameter may not return results because keyword search on the source site requires a logged-in session. Filtering by vertical, season, and award level works without authentication and is the reliable way to narrow results.
Does the API return finalist or entry-level submission data beyond what's in the winners gallery?+
Not currently. The API covers confirmed winners and honorees across award levels (Shortlist through Grand) and specialty categories. Underlying entry submission details, judging scores, or non-winning finalists are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting those detail pages if they become accessible.
Are detail fields like `job_title` and `description` always populated in `get_specialty_winner_detail`?+
No. Both job_title and description are nullable — they return null when the corresponding winner's detail page does not include that information. html_content is also nullable. Only name, year, vertical, and award_type are consistently present.
Page content last updated . Spec covers 7 endpoints from clios.com.
Related APIs in EntertainmentSee all →
clutch.co API
clutch.co API
criterion.com API
Browse and search the Criterion Collection's curated film catalog, explore editorial content and posts from Current magazine, and retrieve Top 10 lists and Closet Picks. Get detailed information about individual films and curated collections.
olympics.com API
Access Olympic Games results, medal tables, and athlete profiles to track performances across disciplines and events. Search featured athletes, view competition outcomes, and stay updated on medal standings from the official Olympics source.
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.
chirojobs.com API
Search and browse chiropractic job listings with detailed information, explore job categories, and access ChiroJobs blog content and pricing—all in one place. Find related positions, compare opportunities, and stay informed with the latest industry insights.
arts.ca.gov API
Discover California arts funding opportunities by browsing grant programs, searching awarded grantees, and accessing resources from the California Arts Council. Find relevant grants and grantee information while staying updated with the latest news and resources in California's arts funding landscape.
craigslist.org API
Search and retrieve Craigslist listings for apartments, vehicles, jobs, services, and other categories across all regional sites to find exactly what you're looking for. Get detailed information about specific listings, browse by location and category, and compare options all in one place.