Content Types
Flexible schemas with 15+ field types — text, richtext, media, references, dates, collections.
my.desgn.space isn't fully optimized for mobile yet. You can continue, but features may not work as expected.
Focus on your AI, prompts, deployments, and design. We handle content, APIs, forms, files, newsletters, and teams — all in one place.
Flexible schemas with 15+ field types — text, richtext, media, references, dates, collections.
Auto-generated endpoints with Bearer authentication. Ready from day one.
Build forms, collect submissions, manage responses — with AI assistance.
Email newsletters with subscriber management. Send to your audience.
Upload, organize, serve files. Images, videos, documents with auto-conversions.
Generate fields and forms with AI. Describe what you need, get structured code.
Connect AI agents. Use your content from Claude, GPT, or any MCP client.
Every app gets auto-generated endpoints. Full authentication, pagination, filtering.
# List published content
curl -X GET "https://my.desgn.space/api/my-app/posts?count=5" \
-H "Authorization: Bearer YOUR_API_TOKEN"
# Submit a form
curl -X POST "https://my.desgn.space/api/forms/contact/submissions" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"email":"[email protected]","message":"Hello"}'
# Subscribe to a newsletter
curl -X POST "https://my.desgn.space/api/newsletters/weekly/subscribe" \
-H "Content-Type: application/json" \
-d '{"email":"[email protected]","name":"John Doe"}'
// List published content
fetch('/api/my-app/posts?count=5', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
},
})
.then(response => response.json())
.then(data => console.log(data));
// Submit a form
fetch('/api/forms/contact/submissions', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Content-Type': 'application/json',
},
body: JSON.stringify({
email: '[email protected]',
message: 'Hello',
}),
})
.then(response => response.json())
.then(data => console.log(data));
Start with a blank canvas. One app equals one project.
Add types, add fields. Or let AI generate them for you.
Consume from your frontend, mobile app, or AI agent.
Content-first websites with markdown, media, and SEO.
Admin panels for your SaaS. Users, subscriptions, data.
Content APIs for iOS, Android, or Flutter apps.
Email lists with subscriber management and sending.
RAG-ready content. Connect Claude or GPT to your docs.
Forms, approvals, and workflows for your team.