Search for results
Query parameters
Attributes to filter search results
Text to search
"florence apartments"
When any value is passed, it enables the fuzzy search: the Levenshtein Edit Distance is used to match more results.
The search index ID on which the search will be performed. If not provided, the first enabled search index will be used.
"12345"
Restrict the search on pages in a specific locale
"it"
The build trigger ID or name on which the search will be performed.
Use search_index_id instead: this parameter is only supported for backward compatibility and will return an error if the build trigger has multiple search indexes associated.
"44"
Parameters to control offset-based pagination
The (zero-based) offset of the first entity returned in the collection (defaults to 0)
200
The maximum number of entities to return (defaults to 20, maximum is 100)
Returns
Returns an array of resource objects of type search_result.
Examples
GET https://site-api.datocms.com/search-results?filter[query]=florence%20apartments HTTP/1.1Authorization: Bearer YOUR-API-TOKENAccept: application/jsonX-Api-Version: 3curl -g 'https://site-api.datocms.com/search-results?filter[query]=florence%20apartments' \ \ -H "Authorization: Bearer YOUR-API-TOKEN" \ -H "Accept: application/json" \ -H "X-Api-Version: 3"await fetch( "https://site-api.datocms.com/search-results?filter[query]=florence%20apartments", { headers: { Authorization: "Bearer YOUR-API-TOKEN", Accept: "application/json", "X-Api-Version": "3", }, },);HTTP/1.1 200 OKContent-Type: application/jsonCache-Control: cache-control: max-age=0, private, must-revalidateX-RateLimit-Limit: 30X-RateLimit-Remaining: 28
{ "data": [ { "type": "search_result", "id": "12adNIIB8rFJF1DoTgCk", "attributes": { "title": "Florence Apartments for Rent | Long Term Student Accommodation Rentals", "body_excerpt": "Finding a place to live while planning to study abroad in Florence can be both exciting and challenging. With this in mind, Housing in Florence assists you in finding conveniently-located housing based...", "url": "http://www.website.com/some-page", "score": 11.3, "highlight": {} } } ], "meta": { "total_count": 20 }}