Checkiday Search Example

Request and response example for /search. Full-text search across event names and descriptions; query must be at least 3 characters long.

CalendarHolidaysEventsObservancesDatesTimePublic APIs

Checkiday Search Example is an example object payload from Checkiday - National Holiday and Event API, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdsummarydescriptionrequestresponse

Example Payload

Raw ↑
{
  "operationId": "searchEvents",
  "summary": "Search Events",
  "description": "Request and response example for /search. Full-text search across event names and descriptions; query must be at least 3 characters long.",
  "request": {
    "method": "GET",
    "url": "https://api.apilayer.com/checkiday/search?query=zucchini&adult=true",
    "headers": {
      "apikey": "YOUR_API_KEY"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "content-type": "application/json",
      "x-ratelimit-limit-month": "100",
      "x-ratelimit-remaining-month": "88"
    },
    "body": {
      "query": "zucchini",
      "adult": true,
      "events": [
        {
          "id": "cc81cbd8730098456f85f69798cbc867",
          "name": "National Zucchini Bread Day",
          "url": "https://www.checkiday.com/cc81cbd8730098456f85f69798cbc867/national-zucchini-bread-day"
        },
        {
          "id": "778e08321fc0ca4ec38fbf507c0e6c26",
          "name": "National Zucchini Day",
          "url": "https://www.checkiday.com/778e08321fc0ca4ec38fbf507c0e6c26/national-zucchini-day"
        },
        {
          "id": "61363236f06e4eb8e4e14e5925c2503d",
          "name": "Sneak Some Zucchini Onto Your Neighbor's Porch Day",
          "url": "https://www.checkiday.com/61363236f06e4eb8e4e14e5925c2503d/sneak-some-zucchini-onto-your-neighbors-porch-day"
        }
      ],
      "rateLimit": {
        "limitMonth": 100,
        "remainingMonth": 88
      }
    }
  }
}