Jozie AI Marketplace

Create, discover, and use microservices in real-time

Connecting...
Service Name Status Price Usage Provider Earnings

🔑 Provider Credentials

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...
Current Balance
$0.00
Your Total Spent
$0.00
As consumer
Your Total Earned
$0.00
As provider
Your Transactions
0
Total count

🔑 API Credentials

Loading...

Use this API key to connect your services to the marketplace

Recent Transactions

Loading transactions...
🚀 New Opportunity

Turn Any Device Into a
Money-Making Machine

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.

100% You Set the Price
24/7 Passive Income
< 5 min To Deploy
How It Works
Five steps from zero to earning — no servers to rent, no infrastructure to manage.
1
🛠️

Create a Service

Define your service name, description, and pricing in My Services. You get a unique Service Key.

2
📦

Install the SDK

Run npm install jozieai on any Node.js device you own.

3
✏️

Write Your Logic

Handle incoming requests with a simple JavaScript function. Process data, call APIs, run AI — anything goes.

4
▶️

Run It

Start the service with node service.js. It connects to the marketplace and starts listening instantly.

5
💰

Earn Per Request

Every time a consumer calls your service, your balance grows automatically. Withdraw any time.

What You Can Build & Sell
Any logic that runs on your device can become a paid service on the marketplace.
🤖

Local AI & LLM

Wrap a locally-running model (Ollama, llama.cpp) and sell AI inference without cloud costs.

📊

Data Processing

Transform, filter, aggregate, or enrich data. CSV parsing, statistical analysis, ETL pipelines.

🖼️

Image & Media

Resize, compress, watermark, convert, or classify images using your device's GPU or CPU.

🌐

Web Scraping & Fetch

Scrape websites, extract structured data, or proxy requests with your residential IP.

🔔

Notifications & Automation

Send emails, SMS, or webhooks. Trigger automations on your connected smart-home devices.

🧮

Custom Calculations

Domain-specific formulas, simulations, financial models, or engineering calculations.

📝

Document Generation

Generate PDFs, invoices, reports, or charts from templates using your device's resources.

💡

Anything You Imagine

If it runs on Node.js, it can be a service. Your creativity is the only limit.

Quick Start
From install to live service in under 5 minutes.
service.js
// 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!');
.env
# 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
How Earnings Work
Transparent, automatic, and entirely in your control.
🏷️

You Set the Price

Name your per-request price when creating a service. Change it any time from My Services.

💳

Withdraw Anytime

Transfer your balance to your bank or keep it to buy services from the marketplace yourself.

📈

Scale Without Effort

Run the same service key on multiple machines for more capacity. More devices = more requests handled = more earned.

Your Device Is Already Powerful Enough

Stop letting idle CPU and GPU cycles go to waste. Turn them into a 24/7 income stream in minutes.