Aveiro API
Authentication
Sites
List Sites
List Templates
Create Site
Pages
Create a Page
Delete a Page
List Pages
Reorder Pages
Update a Page
Site Media
Publish Site
Audience
Newsletter API Overview
Newsletter Campaigns
Social
Social API Overview
Social Accounts
Social Media
Social Posts
Social Performance
Website Mockup Video
TrademarkTrademark
Ctrl k
Search…
Sign up
Aveiro API
Authentication
Sites
List Sites
List Templates
Create Site
Pages
Create a Page
Delete a Page
List Pages
Reorder Pages
Update a Page
Site Media
Publish Site
Audience
Newsletter API Overview
Newsletter Campaigns
Social
Social API Overview
Social Accounts
Social Media
Social Posts
Social Performance
Website Mockup Video
Sponsored
Aveiro
aveiro.app
Sponsored
Aveiro
aveiro.app
TrademarkTrademark
AveiroBlogContact
© Aveiro. All rights reserved.
Built with Aveiro

List Templates

GET /api/v1/templates — list approved marketplace templates available for cloning.
Updated 1mo ago
List Sites
Create Site
In short
GET /api/v1/templates returns approved marketplace templates you can clone when creating a site. Requires sites:read. Use each template slug in POST /api/v1/sites { template: slug }.

Request

Optional query: ?category=portfolio (or docs, blog, store, spotlight) to filter by marketplace category. Required scope: sites:read

Example (curl)

Response

200 OK
Field
Type
Description
slugstringMarketplace slug — pass as template on POST /api/v1/sites
labelstringDisplay name in the gallery
descriptionstringShort marketing description
categorystringportfolio | docs | blog | store | spotlight
preview_urlstringLive demo URL on *.aveiro.page when available
Only approved marketplace templates are returned. Browse the public gallery at aveiro.app/marketplace.

Errors

HTTP
Code
When
401UNAUTHORIZEDToken missing or invalid
403FORBIDDENToken lacks sites:read scope

Related

  • Create site
  • List sites
  • Platform help: Choosing a template
GET /api/v1/templates
Authorization: Bearer av_live_…
curl -s 'https://help.aveiro.app/api/v1/templates?category=docs' \
  -H 'Authorization: Bearer av_live_…'
{
  "templates": [
    {
      "slug": "once-ui-docs",
      "label": "Once UI Docs",
      "description": "Documentation site with sidebar navigation.",
      "category": "docs",
      "preview_url": "https://once-ui-docs.aveiro.page"
    }
  ]
}