Skip to main content
GET
/
articles
/
advanceSearch
Advanced search articles
curl --request GET \
  --url https://api.octaviatech.app/cms/articles/advanceSearch \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "statusCode": 200,
  "message": "OK",
  "data": {
    "items": [
      {
        "id": "{{objectId}}",
        "tags": [
          "ai"
        ]
      }
    ],
    "pagination": {
      "total": 1,
      "page": 1,
      "limit": 20,
      "totalPages": 1
    }
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

categoryId
string
Example:

"{{objectId}}"

subCategoryId
string
Example:

"{{objectId}}"

authorId
string
Example:

"{{objectId}}"

tag
string

CSV list of tags (single param)

Example:

"ai,news"

dateFrom
string<date>
Example:

"2025-05-01"

dateTo
string<date>
Example:

"2025-10-31"

page
integer
Example:

1

limit
integer
Example:

20

sortBy
enum<string>
Available options:
createdAt,
publishDate
Example:

"publishDate"

sortOrder
enum<string>
Available options:
asc,
desc
Example:

"desc"

Response

OK

The response is of type any.