Overview
Free serverless static website hosting using Puter.js - deploy websites to a puter.site subdomain with no backend. Just add a script tag and call puter.hosting.create().
Notes: JS library, not REST. No API key needed. Random subdomain generated. Users pay for own hosting.
TL;DR
What it does: Puter Static Hosting: Free serverless static website hosting using Puter.
Quick start: https://docs.puter.com/playground/intro-hosting/?autorun=1
No API key needed!
Try It Now
Call this URL to see what you get back:
https://docs.puter.com/playground/intro-hosting/?autorun=1
Try This URL Now →
FAQ
- Do I need an API key?
- No! This API is completely free to use with no authentication required.
- Is there a rate limit?
- JS library, not REST. No API key needed. Random subdomain generated. Users pay for own hosting.
- Can I use this in a commercial project?
- Yes, these APIs are free for both personal and commercial use. Check the documentation for any specific restrictions.
- How do I get started?
- Copy the example URL above and paste it into your browser or code. The response is in JSON format which you can parse in any programming language.
Code Examples
JavaScript Example
fetch('https://docs.puter.com/playground/intro-hosting/?autorun=1')
.then(res => res.json())
.then(data => console.log(data))
.catch(err => console.error(err));
Python Example
import requests
url = 'https://docs.puter.com/playground/intro-hosting/?autorun=1'
response = requests.get(url)
data = response.json()
print(data)
API Details
- API URL
https://js.puter.com/v2/- Documentation
- https://docs.puter.com/Hosting/
- Category
- Hosting
- Authentication
- Not Required
- Geographic Coverage
- global
What You Can Build
- Integrate into your application
- Build new features
- Enhance existing projects