zapi.
APIsPricingDocsMCP
APIsPricingDocsMCP
Sign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCP
Sign in
Search Tools/Openverse
Logo Openverse

Openverse

Searches an index of openly-licensed media and returns image metadata with attribution.

1 endpoint1 endpoint on this scraper11 calls11 calls so farupdated 4 months agoLast updated 5/27/2026, 1:33:54 PMBusy: 10+ calls so farllms.txt
Endpoints1

1/1 passing
checked 20 hours ago · daily 01:00 WIB

Search

Returns openly-licensed images with URLs, license info, and attribution data for a query.

GET/v1/search-tools:openverse/search5m cache3 paramschecking key…
Parameters
querystringrequired

Search keyword

countnumber

Results per page 1-30 (default 12)

pagenumber

Result page (default 1, max 50)

·
Response
EXAMPLE
{
  "page": 1,
  "count": 5,
  "items": [
    {
      "id": "1c5442f6-6bb6-4ab7-b603-f598e7579dd2",
      "url": "https://www.flickr.com/photos/32426194@N00/3481540500",
      "image": "https://live.staticflickr.com/3313/3481540500_c846c62863_b.jpg",
      "title": "Cat Fish 2",
      "source": "openverse.org",
      "creator": "admiller",
      "license": "by 2.0",
      "provider": "flickr",
      "thumbnail": "https://api.openverse.org/v1/images/1c5442f6-6bb6-4ab7-b603-f598e7579dd2/thumb/",
      "licenseUrl": "https://creativecommons.org/licenses/by/2.0/"
    },
    {
      "id": "de42d499-d660-47b4-b203-28d5589c31d2",
      "url": "https://www.flickr.com/photos/29468339@N02/5840168826",
      "image": "https://live.staticflickr.com/2706/5840168826_486f364c6c_b.jpg",
      "title": "Cat bliss",
      "source": "openverse.org",
      "creator": "@Doug88888",
      "license": "by-nc-sa 2.0",
      "provider": "flickr",
      "thumbnail": "https://api.openverse.org/v1/images/de42d499-d660-47b4-b203-28d5589c31d2/thumb/",
      "licenseUrl": "https://creativecommons.org/licenses/by-nc-sa/2.0/"
    },
    {
      "id": "b9bbd2be-a68e-4d2c-ad85-f43000cb8d55",
      "url": "https://www.flickr.com/photos/93665474@N00/3717404325",
      "image": "https://live.staticflickr.com/3436/3717404325_db41d8d687_b.jpg",
      "title": "cat",
      "source": "openverse.org",
      "creator": "Alex Balan",
      "license": "by-nc-sa 2.0",
      "provider": "flickr",
      "thumbnail": "https://api.openverse.org/v1/images/b9bbd2be-a68e-4d2c-ad85-f43000cb8d55/thumb/",
      "licenseUrl": "https://creativecommons.org/licenses/by-nc-sa/2.0/"
    },
    {
      "id": "3d32b0c5-58b3-4e38-b034-cd6c8d674d73",
      "url": "https://www.flickr.com/photos/32695450@N05/11748899763",
      "image": "https://live.staticflickr.com/7300/11748899763_2dd16da8b4_b.jpg",
      "title": "cat in the sun",
      "source": "openverse.org",
      "creator": "fidber",
      "license": "by 2.0",
      "provider": "flickr",
      "thumbnail": "https://api.openverse.org/v1/images/3d32b0c5-58b3-4e38-b034-cd6c8d674d73/thumb/",
      "licenseUrl": "https://creativecommons.org/licenses/by/2.0/"
    },
    {
      "id": "aafaf91c-4d64-4f2e-b8ec-d7e77131b888",
      "url": "https://www.flickr.com/photos/57443751@N07/6494613787",
      "image": "https://live.staticflickr.com/7004/6494613787_9a3031fa7d_b.jpg",
      "title": "Cat on the sofa",
      "source": "openverse.org",
      "creator": "sushiraider",
      "license": "by-nc-sa 2.0",
      "provider": "flickr",
      "thumbnail": "https://api.openverse.org/v1/images/aafaf91c-4d64-4f2e-b8ec-d7e77131b888/thumb/",
      "licenseUrl": "https://creativecommons.org/licenses/by-nc-sa/2.0/"
    }
  ],
  "total": 240,
  "hasMore": true,
  "nextPage": 2
}

Code

Search
index.ts
// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";

const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });

const data = await client.run("search-tools:openverse", "search", {
  "query": "cat",
  "count": 12,
  "page": 1
});
console.log(data);
Recommended · typed errors, safe retries and bulk jobsSDK reference

Full reference

1 endpoint · plain text
GET
Search/v1/search-tools:openverse/search
3 params

Parameters

querystringrequired
Search keyword
countnumberoptional
Results per page 1-30 (default 12)
pagenumberoptional
Result page (default 1, max 50)

Request

curl -X GET "https://api.zapi.ink/v1/search-tools:openverse/search?query=cat&count=12&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "count": 5,
  "items": [
    {
      "id": "1c5442f6-6bb6-4ab7-b603-f598e7579dd2",
      "url": "https://www.flickr.com/photos/32426194@N00/3481540500",
      "image": "https://live.staticflickr.com/3313/3481540500_c846c62863_b.jpg",
      "title": "Cat Fish 2",
      "source": "openverse.org",
      "creator": "admiller",
      "license": "by 2.0",
      "provider": "flickr",
      "thumbnail": "https://api.openverse.org/v1/images/1c5442f6-6bb6-4ab7-b603-f598e7579dd2/thumb/",
      "licenseUrl": "https://creativecommons.org/licenses/by/2.0/"
    },
    {
      "id": "de42d499-d660-47b4-b203-28d5589c31d2",
      "url": "https://www.flickr.com/photos/29468339@N02/5840168826",
      "image": "https://live.staticflickr.com/2706/5840168826_486f364c6c_b.jpg",
      "title": "Cat bliss",
      "source": "openverse.org",
      "creator": "@Doug88888",
      "license": "by-nc-sa 2.0",
      "provider": "flickr",
      "thumbnail": "https://api.openverse.org/v1/images/de42d499-d660-47b4-b203-28d5589c31d2/thumb/",
      "licenseUrl": "https://creativecommons.org/licenses/by-nc-sa/2.0/"
    },
    {
      "id": "b9bbd2be-a68e-4d2c-ad85-f43000cb8d55",
      "url": "https://www.flickr.com/photos/93665474@N00/3717404325",
      "image": "https://live.staticflickr.com/3436/3717404325_db41d8d687_b.jpg",
      "title": "cat",
      "source": "openverse.org",
      "creator": "Alex Balan",
      "license": "by-nc-sa 2.0",
      "provider": "flickr",
      "thumbnail": "https://api.openverse.org/v1/images/b9bbd2be-a68e-4d2c-ad85-f43000cb8d55/thumb/",
      "licenseUrl": "https://creativecommons.org/licenses/by-nc-sa/2.0/"
    },
    {
      "id": "3d32b0c5-58b3-4e38-b034-cd6c8d674d73",
      "url": "https://www.flickr.com/photos/32695450@N05/11748899763",
      "image": "https://live.staticflickr.com/7300/11748899763_2dd16da8b4_b.jpg",
      "title": "cat in the sun",
      "source": "openverse.org",
      "creator": "fidber",
      "license": "by 2.0",
      "provider": "flickr",
      "thumbnail": "https://api.openverse.org/v1/images/3d32b0c5-58b3-4e38-b034-cd6c8d674d73/thumb/",
      "licenseUrl": "https://creativecommons.org/licenses/by/2.0/"
    },
    {
      "id": "aafaf91c-4d64-4f2e-b8ec-d7e77131b888",
      "url": "https://www.flickr.com/photos/57443751@N07/6494613787",
      "image": "https://live.staticflickr.com/7004/6494613787_9a3031fa7d_b.jpg",
      "title": "Cat on the sofa",
      "source": "openverse.org",
      "creator": "sushiraider",
      "license": "by-nc-sa 2.0",
      "provider": "flickr",
      "thumbnail": "https://api.openverse.org/v1/images/aafaf91c-4d64-4f2e-b8ec-d7e77131b888/thumb/",
      "licenseUrl": "https://creativecommons.org/licenses/by-nc-sa/2.0/"
    }
  ],
  "total": 240,
  "hasMore": true,
  "nextPage": 2
}

Related APIs

More in search-tools

Brave Search

search-toolsbrave

Web search via Brave — datacenter-friendly, no captcha, real-time dengan title/URL/snippet.

6.8K6.8K calls so far1hResponses cached for 1h
Busy: 10+ calls so far

Bing Search

search-toolsbing

Bing Search. pencarian web lengkap, snippet, link, multi-bahasa dan region

7.5K7.5K calls so far1hResponses cached for 1h
Busy: 10+ calls so far

DuckDuckGo

search-toolsduckduckgo

DuckDuckGo web search — privacy-focused search engine, no tracking, hasil pencarian web umum dengan title, URL, snippet.

1.1K1.1K calls so far15mResponses cached for 15m
Busy: 10+ calls so far

GitHub Search

search-toolsgithub-code

Searches public code and repositories and returns matching file or repo metadata.

6161 calls so far5mResponses cached for 5m
Busy: 10+ calls so far

Wikipedia

search-toolswikipedia

Wikipedia search — pencarian artikel ensiklopedia multi-bahasa (en/id) dengan title, snippet, URL halaman.

5454 calls so far3mResponses cached for 3m
Busy: 10+ calls so far

Stack Overflow

search-toolsstackoverflow

Stack Overflow & Stack Exchange search — Q&A programming dengan tags, score, view count. Support stackoverflow/superuser/serverfault/askubuntu.

3737 calls so far3mResponses cached for 3m
Busy: 10+ calls so far
zapi.

One key, one response shape. We keep the scrapers working.

Get an API key
ProductBrowse APIsPricingDocsMCP server
DevelopersSDK on npmGitHubOpenAPI specllms.txt
SupportReport an issueDiscord
LegalTermsPrivacyCookiesAUPRefunds
© 2026 ZapiPublic web data, one API.
zapi.