Getting Started
First API Call
Make your first API request
First API Call
Fetch Collections
curl -X GET "https://bunmori.com/api/public/my-domain/collections" \
-H "Authorization: Bearer bm_your_token_here"Replace my-domain with your domain slug and bm_your_token_here with your access token.
Fetch Items
curl -X GET "https://bunmori.com/api/public/my-domain/collections/blog-posts/items" \
-H "Authorization: Bearer bm_your_token_here"Filter by Language
curl -X GET "https://bunmori.com/api/public/my-domain/collections/blog-posts/items?language=en" \
-H "Authorization: Bearer bm_your_token_here"