Skip to main content
GET
/
articles
/
getByTag
/
{tag}
Get articles by tag (public)
curl --request GET \
  --url https://api.octaviatech.app/cms/articles/getByTag/{tag} \
  --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

Path Parameters

tag
string
required
Example:

"ai"

Query Parameters

page
integer
Example:

1

limit
integer
Example:

20

Response

OK

The response is of type any.