Europeana Search API

Discover records via keyword, faceted, and filtered search

Operations 1

GET /search.json Search records #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/europeana-search-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

europeana-search-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Europeana and Record Search API
  description: The Europeana REST API gives programmatic access to over 50 million cultural heritage items, including books, paintings, films, museum objects, and archival records aggregated from more than 3,500 institutions across Europe. The Search API discovers records, and the Record API returns the full metadata for a specific item.
  version: '2.0'
  contact:
    name: Europeana Pro
    url: https://pro.europeana.eu/page/apis
  license:
    name: EUPL 1.2
    url: https://eupl.eu/1.2/en/
  termsOfService: https://www.europeana.eu/en/rights
servers:
- url: https://api.europeana.eu/record/v2
  description: Europeana Record/Search v2 API
security:
- apiKeyAuth: []
tags:
- name: Search
  description: Discover records via keyword, faceted, and filtered search
paths:
  /search.json:
    get:
      summary: Search records
      description: Search the Europeana collection using keyword, facet, and filter parameters.
      operationId: searchRecords
      tags:
      - Search
      parameters:
      - name: query
        in: query
        required: true
        description: Search query string.
        schema:
          type: string
          example: mona lisa
      - name: qf
        in: query
        required: false
        description: Query refinement filter (repeatable).
        schema:
          type: array
          items:
            type: string
      - name: rows
        in: query
        required: false
        description: Number of records to return (max 100).
        schema:
          type: integer
          default: 12
      - name: start
        in: query
        required: false
        schema:
          type: integer
          default: 1
      - name: profile
        in: query
        required: false
        description: Response profile (minimal, standard, rich, facets).
        schema:
          type: string
          enum:
          - minimal
          - standard
          - rich
          - facets
          - portal
      - name: media
        in: query
        required: false
        schema:
          type: boolean
      - name: thumbnail
        in: query
        required: false
        schema:
          type: boolean
      - name: reusability
        in: query
        required: false
        schema:
          type: string
          enum:
          - open
          - restricted
          - permission
      responses:
        '200':
          description: Search results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SearchResponse'
        '401':
          description: Missing or invalid API key
components:
  schemas:
    SearchResponse:
      type: object
      properties:
        success:
          type: boolean
        itemsCount:
          type: integer
        totalResults:
          type: integer
        items:
          type: array
          items:
            type: object
        facets:
          type: array
          items:
            type: object
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: query
      name: wskey
      description: Europeana API key. Register at https://pro.europeana.eu/pages/get-api.