Skip to main content
GET
/
articles
/
search
Search articles
curl --request GET \
  --url https://api.octaviatech.app/cms/articles/search \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "statusCode": 200,
  "message": "OK",
  "data": {
    "items": [
      {
        "id": "{{objectId}}",
        "slug": "droopy-nose",
        "mainTitle": {
          "en": "Droopy Nose",
          "es": "Nariz caída"
        }
      }
    ],
    "pagination": {
      "total": 1,
      "page": 1,
      "limit": 20,
      "totalPages": 1
    }
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

q
string
Example:

"droopy"

page
integer
Example:

1

limit
integer
Example:

20

Response

OK

The response is of type any.