Stay organized with collections
Save and categorize content based on your preferences.
Version 4.0.25.14 (latest)
Search Content Views
If multiple search params are given and filter_or is FALSE or not specified,
search params are combined in a logical AND operation.
Only rows that match all search param criteria will be returned.
If filter_or is TRUE, multiple search params are combined in a logical OR operation.
Results will include rows that match any of the search criteria.
String search params use case-insensitive matching.
String search params can contain % and '_' as SQL LIKE pattern match wildcard expressions.
example="dan%" will match "danger" and "Danzig" but not "David"
example="D_m%" will match "Damage" and "dump"
Integer search params can accept a single value or a comma separated list of values. The multiple
values will be combined under a logical OR operation - results will match at least one of
the given values.
Most search params can accept "IS NULL" and "NOT NULL" as special expressions to match
or exclude (respectively) rows where the column is null.
Boolean search params accept only "true" and "false" as values.
Request
GET
/content_view/search
Datatype
Description
Request
HTTP Request
query
HTTP Query
Expand HTTP Query definition...
view_count
string
Match view count
group_id
string
Match Group Id
look_id
string
Match look_id
dashboard_id
string
Match dashboard_id
content_metadata_id
string
Match content metadata id
start_of_week_date
string
Match start of week date (format is "YYYY-MM-DD")
all_time
boolean
True if only all time view records should be returned
user_id
string
Match user id
fields
string
Requested fields
limit
integer
Number of results to return. Use with `offset` to manage pagination of results
offset
integer
Number of results to skip before returning data
sorts
string
Fields to sort by
filter_or
boolean
Combine given search criteria in a boolean OR expression
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[],[],null,["# Search Content Views\n\nVersion 4.0.25.14 (latest)\n\n### Search Content Views\n\nIf multiple search params are given and `filter_or` is FALSE or not specified,\nsearch params are combined in a logical AND operation.\nOnly rows that match *all* search param criteria will be returned.\n\nIf `filter_or` is TRUE, multiple search params are combined in a logical OR operation.\nResults will include rows that match **any** of the search criteria.\n\nString search params use case-insensitive matching.\nString search params can contain `%` and '_' as SQL LIKE pattern match wildcard expressions.\nexample=\"dan%\" will match \"danger\" and \"Danzig\" but not \"David\"\nexample=\"D_m%\" will match \"Damage\" and \"dump\"\n\nInteger search params can accept a single value or a comma separated list of values. The multiple\nvalues will be combined under a logical OR operation - results will match at least one of\nthe given values.\n\nMost search params can accept \"IS NULL\" and \"NOT NULL\" as special expressions to match\nor exclude (respectively) rows where the column is null.\n\nBoolean search params accept only \"true\" and \"false\" as values.\n\nRequest\n-------\n\nGET /content_view/search \nDatatype \nDescription \nRequest \nHTTP Request \nquery \nHTTP Query \nExpand HTTP Query definition... \nview_count \nstring \nMatch view count \ngroup_id \nstring \nMatch Group Id \nlook_id \nstring \nMatch look_id \ndashboard_id \nstring \nMatch dashboard_id \ncontent_metadata_id \nstring \nMatch content metadata id \nstart_of_week_date \nstring \nMatch start of week date (format is \"YYYY-MM-DD\") \nall_time \nboolean \nTrue if only all time view records should be returned \nuser_id \nstring \nMatch user id \nfields \nstring \nRequested fields \nlimit \ninteger \nNumber of results to return. Use with \\`offset\\` to manage pagination of results \noffset \ninteger \nNumber of results to skip before returning data \nsorts \nstring \nFields to sort by \nfilter_or \nboolean \nCombine given search criteria in a boolean OR expression\n\nResponse\n--------\n\n### 200: Content View\n\nDatatype \nDescription \n(array) \n[ContentView](/looker/docs/reference/looker-api/latest/types/ContentView)\\[\\] \ncan \n*lock* \nobject \nOperations the current user is able to perform on this object \nid \n*lock* \nstring \nUnique Id \nlook_id \n*lock* \nstring \nId of viewed Look \ndashboard_id \n*lock* \nstring \nId of the viewed Dashboard \ntitle \n*lock* \nstring \nName or title of underlying content \ncontent_metadata_id \n*lock* \nstring \nContent metadata id of the Look or Dashboard \nuser_id \n*lock* \nstring \nId of user content was viewed by \ngroup_id \n*lock* \nstring \nId of group content was viewed by \nview_count \n*lock* \ninteger \nNumber of times piece of content was viewed \nfavorite_count \n*lock* \ninteger \nNumber of times piece of content was favorited \nlast_viewed_at \n*lock* \nstring \nDate the piece of content was last viewed \nstart_of_week_date \n*lock* \nstring \nWeek start date for the view and favorite count during that given week\n\n### 400: Bad Request\n\nDatatype \nDescription \n(object) \n[Error](/looker/docs/reference/looker-api/latest/types/Error) \nmessage \n*lock* \nstring \nError details \ndocumentation_url \n*lock* \nstring \nDocumentation link\n\n### 404: Not Found\n\nDatatype \nDescription \n(object) \n[Error](/looker/docs/reference/looker-api/latest/types/Error) \nmessage \n*lock* \nstring \nError details \ndocumentation_url \n*lock* \nstring \nDocumentation link\n\n### 429: Too Many Requests\n\nDatatype \nDescription \n(object) \n[Error](/looker/docs/reference/looker-api/latest/types/Error) \nmessage \n*lock* \nstring \nError details \ndocumentation_url \n*lock* \nstring \nDocumentation link"]]