page_type: The slug of the Page Type (use * for Single Pages)
page_slug: The unique slug identifier of the page
Examples:
# Get a Single PageGET /pages/*/homepage/# Get a page from a Page TypeGET /pages/landing-pages/summer-sale/# List all pages of a typeGET /pages/blog-posts/
# List all pages of a Page Type with paginationcurl "https://api.buttercms.com/v2/pages/landing-pages/?auth_token=YOUR_TOKEN&page=1&page_size=10"# Get a specific page with full reference resolutioncurl "https://api.buttercms.com/v2/pages/landing-pages/summer-sale/?auth_token=YOUR_TOKEN&levels=3"# Get a page in Spanish localecurl "https://api.buttercms.com/v2/pages/landing-pages/summer-sale/?auth_token=YOUR_TOKEN&locale=es"# Preview a draft pagecurl "https://api.buttercms.com/v2/pages/landing-pages/summer-sale/?auth_token=YOUR_TOKEN&preview=1"
# Get all items from a Collectioncurl "https://api.buttercms.com/v2/content/artists/?auth_token=YOUR_TOKEN"# Filter Collection by field valuecurl "https://api.buttercms.com/v2/content/artists/?auth_token=YOUR_TOKEN&fields.genre=Rock"# Get a specific Collection itemcurl "https://api.buttercms.com/v2/content/artists/123/?auth_token=YOUR_TOKEN"# Paginated Collection with orderingcurl "https://api.buttercms.com/v2/content/artists/?auth_token=YOUR_TOKEN&page=2&page_size=20&order=-name"
# List all published postscurl "https://api.buttercms.com/v2/posts/?auth_token=YOUR_TOKEN"# Get posts without body content (faster)curl "https://api.buttercms.com/v2/posts/?auth_token=YOUR_TOKEN&exclude_body=true"# Filter posts by categorycurl "https://api.buttercms.com/v2/posts/?auth_token=YOUR_TOKEN&category_slug=technology"# Search postscurl "https://api.buttercms.com/v2/posts/search/?auth_token=YOUR_TOKEN&query=headless%20cms"# Get a single post with next/previous navigationcurl "https://api.buttercms.com/v2/posts/hello-world/?auth_token=YOUR_TOKEN"