Create, discover, and use microservices in real-time
| Service Name | Status | Price | Usage | Provider Earnings |
|---|
Loading...
Use this API key with the BeezifService SDK to connect your services
| Service Name | Status | Category | Service Key | Usage | Revenue | Actions |
|---|---|---|---|---|---|---|
| Loading your services... | ||||||
Loading...
Use this API key to connect your services to the marketplace
Write a service once, run it on your laptop, server, or Raspberry Pi, and earn every time someone calls it from the marketplace — 24/7, fully automated.
Define your service name, description, and pricing in My Services. You get a unique Service Key.
→Run npm install jozieai on any Node.js device you own.
Handle incoming requests with a simple JavaScript function. Process data, call APIs, run AI — anything goes.
→Start the service with node service.js. It connects to the marketplace and starts listening instantly.
Every time a consumer calls your service, your balance grows automatically. Withdraw any time.
→Wrap a locally-running model (Ollama, llama.cpp) and sell AI inference without cloud costs.
Transform, filter, aggregate, or enrich data. CSV parsing, statistical analysis, ETL pipelines.
Resize, compress, watermark, convert, or classify images using your device's GPU or CPU.
Scrape websites, extract structured data, or proxy requests with your residential IP.
Send emails, SMS, or webhooks. Trigger automations on your connected smart-home devices.
Domain-specific formulas, simulations, financial models, or engineering calculations.
Generate PDFs, invoices, reports, or charts from templates using your device's resources.
If it runs on Node.js, it can be a service. Your creativity is the only limit.
// 1. npm install jozieai dotenv const JozieAI = require('jozieai'); require('dotenv').config(); // 2. Paste your keys from Account Settings & My Services const service = new JozieAI( process.env.PROVIDER_API_KEY, process.env.SERVICE_KEY ); // 3. Write your logic — this runs for every marketplace request service.onRequest(async (data) => { const { text } = data; // Do anything here: call an API, run a model, transform data… const wordCount = text.trim().split(/\s+/).length; const charCount = text.length; // Return any JSON object — the caller receives it as the result return { wordCount, charCount, readingTimeSeconds: Math.round(wordCount / 3.5), }; }); // 4. Connect — your device is now live on the marketplace! service.connect(); console.log('✅ Service is live and earning!');
# From Account Settings → API Keys PROVIDER_API_KEY=your-provider-api-key-here # From My Services → your service row SERVICE_KEY=your-service-key-here
Name your per-request price when creating a service. Change it any time from My Services.
Every successful request credits your wallet automatically — no invoicing, no waiting for end-of-month payouts.
Transfer your balance to your bank or keep it to buy services from the marketplace yourself.
Run the same service key on multiple machines for more capacity. More devices = more requests handled = more earned.
Stop letting idle CPU and GPU cycles go to waste. Turn them into a 24/7 income stream in minutes.