microcms-lisp-sdk is a Common Lisp SDK for interacting with [microCMS](https://microcms.io) via its REST API. It provides macros to define client functions for both list and object type endpoints.
## ⚙️ Configuration
Before making API requests, set your API key and service domain:
```lisp
(setf microcms:*api-key* "your-api-key")
(setf microcms:*service-domain* "your-service-domain") ; e.g., "example" for example.microcms.io
```
## 🚀 Usage
### List Type Endpoint
Use `define-list-client` macro to define functions for list-type content.