v1

latestOpenAPI 3.1.02026-07-14460151.1 KB

Retrieve a list of notecards

Retrieve a list of notecards.

get/v2/notecards

Query parameters

limitstring

Return up to this many results per page. (≤ 50 default 15)

pagestring

Return the data of the specified page

Response

200

Example response

{
  "data": [
    {
      "id": 1,
      "name": "test",
      "message": "content",
      "logo": {
        "id": 1,
        "src": "https://corporatemerch.com/image1.png",
        "created_at": "2023-01-26T05:43:03+00:00"
      }
    }
  ],
  "pagination": {
    "path": "https://api.corporatemerch.com/v1/notecards",
    "total": 2,
    "limit": 15,
    "current_page": 1,
    "last_page": 1
  }
}