Templates
Navigation & Structure
Templates for navigation elements — navbar, footer, breadcrumbs, and sidebar nav.
navbar
Logo text, menu items with anchor links, and a CTA button.
curl "https://api.yaddayadda.io/v1/generate?template=navbar"Response Schema
{
"logo": "string (1-3 words)",
"menu_items": [
{
"label": "string (1-2 words)",
"href": "string (e.g. '#features', '#pricing')"
}
],
"cta": "string (2-3 words)"
}Example Output (Yadda Ipsum)
{
"logo": "Blabberium",
"menu_items": [
{ "label": "Hogwash", "href": "#hogwash" },
{ "label": "Kerfuffle", "href": "#kerfuffle" },
{ "label": "Shenanigans", "href": "#shenanigans" },
{ "label": "Balderdash", "href": "#balderdash" },
{ "label": "Malarkey", "href": "#malarkey" }
],
"cta": "Start blabbering"
}footer
Company info, multi-column link groups, copyright notice, and social media links.
curl "https://api.yaddayadda.io/v1/generate?template=footer"Response Schema
{
"company_name": "string (1-2 words)",
"tagline": "string (4-8 words)",
"columns": [
{
"heading": "string (1-2 words)",
"links": ["string (1-3 words each)"]
}
],
"copyright": "string",
"social_links": ["string (platform names)"]
}breadcrumbs
Simple breadcrumb trail for navigation hierarchy.
curl "https://api.yaddayadda.io/v1/generate?template=breadcrumbs"Response Schema
{
"items": ["string (1-3 words each, 3-5 items)"]
}sidebar_nav
Grouped navigation sections with headings and nav items.
curl "https://api.yaddayadda.io/v1/generate?template=sidebar_nav"Response Schema
{
"sections": [
{
"heading": "string (1-3 words)",
"items": ["string (1-3 words each)"]
}
]
}