Search Pages By Title
GET
/pages/search
const url = 'https://app.metakip.com/api/v1/pages/search';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://app.metakip.com/api/v1/pages/search \ --header 'Authorization: Bearer <token>'Returns accessible, non-deleted pages whose titles match the query. Search uses English full-text matching with a partial-title fallback and returns at most 20 results ordered by relevance.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”q
string
Text to search for in page titles. Blank or omitted queries return no results.
Responses
Section titled “Responses”Accessible pages with matching titles and computed folder paths.
Media typeapplication/json
object
data
required
Array<object>
object
id
required
string format: uuid
title
required
string
createdAt
required
string
updatedAt
required
string
folderPath
required
string
Example
{ "data": [ { "permission": "view" } ]}The API token is missing a required scope: pages:read.
Media typeapplication/json
Structured error returned when the request cannot be completed.
object
error
required
Error details for programmatic handling.
object
code
required
Stable error code.
string
message
required
Human-readable explanation.
string
Examplegenerated
{ "error": { "code": "example", "message": "example" }}