{
"openapi": "3.1.0",
"info": {
"title": "Bytes' Atelier — Services API",
"description": "Machine-readable description of Bytes' Atelier's services and contact endpoints. Bytes' Atelier engineers bespoke digital foundations, intelligent workflow automations, and custom internal infrastructure for businesses that have outgrown fragmented tools.",
"version": "1.0.0",
"contact": {
"name": "Bytes' Atelier",
"url": "https://bytesatelier.live",
"email": "-"
},
"license": {
"name": "Proprietary",
"url": "https://bytesatelier.live/terms"
}
},
"servers": [
{
"url": "https://bytesatelier.live",
"description": "Production"
}
],
"tags": [
{
"name": "Services",
"description": "Service offerings and descriptions"
},
{
"name": "Contact",
"description": "Inquiry and contact endpoints"
},
{
"name": "About",
"description": "Company information"
}
],
"paths": {
"/": {
"get": {
"tags": ["About"],
"summary": "Homepage",
"description": "Returns the Bytes' Atelier homepage with company overview, service summaries, and contact information.",
"responses": {
"200": {
"description": "Homepage HTML",
"content": {
"text/html": {}
}
}
}
}
},
"/services": {
"get": {
"tags": ["Services"],
"summary": "Services overview",
"description": "Returns the full services page detailing bespoke internal systems, intelligent workflow automations, digital foundations, and operational modernization advisory.",
"responses": {
"200": {
"description": "Services page HTML",
"content": {
"text/html": {}
}
}
}
}
},
"/about": {
"get": {
"tags": ["About"],
"summary": "About page",
"description": "Returns company background, founder bio, and positioning. Founder: Yasmine Johnston-Ison, former Army Intelligence analyst.",
"responses": {
"200": {
"description": "About page HTML",
"content": {
"text/html": {}
}
}
}
}
},
"/contact": {
"get": {
"tags": ["Contact"],
"summary": "Contact page",
"description": "Returns the contact form and inquiry instructions.",
"responses": {
"200": {
"description": "Contact page HTML",
"content": {
"text/html": {}
}
}
}
},
"post": {
"tags": ["Contact"],
"summary": "Submit service inquiry",
"description": "Submit a service inquiry form. Include business name, current systems, and the problem you need solved.",
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"required": ["name", "email", "message"],
"properties": {
"name": { "type": "string", "description": "Your name" },
"email": { "type": "string", "format": "email", "description": "Your email" },
"business": { "type": "string", "description": "Business name" },
"message": { "type": "string", "description": "What problem are you trying to solve?" },
"service": {
"type": "string",
"enum": [
"Bespoke Internal Systems",
"Intelligent Workflow Automations",
"Digital Foundations & Wireframes",
"Operational Modernization Advisory",
"General Inquiry"
],
"description": "Service of interest"
}
}
}
}
}
},
"responses": {
"200": {
"description": "Inquiry received",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"status": { "type": "string", "example": "received" },
"message": { "type": "string", "example": "We'll respond within 1 business day." }
}
}
}
}
}
}
}
},
"/llms.txt": {
"get": {
"tags": ["About"],
"summary": "LLM-readable site summary",
"description": "Plain-text summary of Bytes' Atelier for LLMs and AI agents.",
"responses": {
"200": {
"description": "Plain text",
"content": {
"text/plain": {}
}
}
}
}
},
"/schema.json": {
"get": {
"tags": ["About"],
"summary": "JSON-LD structured data",
"description": "Structured data for search engines and AI agents.",
"responses": {
"200": {
"description": "JSON-LD",
"content": {
"application/json": {}
}
}
}
}
}
},
"components": {
"schemas": {
"Service": {
"type": "object",
"properties": {
"name": { "type": "string" },
"description": { "type": "string" },
"deliverables": {
"type": "array",
"items": { "type": "string" }
},
"priceRange": { "type": "string" }
}
}
}
}
}