zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
On this page
  • Playground
  • Code examples
  • Full reference
  • Related APIs
Search Tools/Openverse
Logo Openverse

Openverse

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

Endpoints
1
Requests
10
Updated
3 months ago
For LLMs
llms.txt
Endpoint healthyesterday
  • searchpassing, 2.1s
1/1 passingdaily 01:00 WIB

Playground

1 endpoint
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 examples

Search
zpi-sdkrecommended
// 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);
Full SDK reference →
request.sh
curl -X GET "https://api.zpi.web.id/v1/search-tools:openverse/search?query=cat&count=12&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Full reference

1 endpoint · plain text
GETSearch/v1/search-tools:openverse/searchReturns openly-licensed images with URLs, license info, and attribution data for a query.

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.zpi.web.id/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-tools/brave

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

5K calls·1h cache

Bing Search

search-tools/bing

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

5.5K calls·1h cache

DuckDuckGo

search-tools/duckduckgo

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

736 calls·15m cache

GitHub Search

search-tools/github-code

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

58 calls·5m cache

Wikipedia

search-tools/wikipedia

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

51 calls·3m cache

Hacker News

search-tools/hackernews

Hacker News search via Algolia API — pencarian post & komentar tech/startup community dengan points, comments, author.

48 calls·3m cache
Browse APIsPricingDocsMCP serverGet an API key
zapi.One key, one response shape.
TermsPrivacyCookiesAUPRefunds© 2026