picpulse.lushai.dev

High-Speed Cloud Asset CDN & Icon SDK

Upload images, manage semantic asset slugs, get permanent direct hotlinks, and render custom cloud icons effortlessly with our lightweight FontAwesome-style JavaScript SDK.

Launch picpulse.lushai.dev View Developer SDK Docs ↗
PicPulse Cloud Asset CDN & Icon SDK Dashboard Visual

PicPulse Core Capabilities

Next-generation image delivery, semantic asset routing, and developer-first embedding tools.

Instant .PNG Direct Hotlinks

Generate high-speed, direct CDN image links (.png, .webp, .svg, .jpg) in one click for blogs, markdown docs, marketplaces, and external applications.

FontAwesome-Style <pic-icon> SDK

Include our tiny JS SDK in your website header and drop cloud icons straight into your HTML using custom <pic-icon> tags or class names.

Cloudinary-Style Semantic Slugs

Organize uploaded assets with clean, human-readable semantic slugs, custom folders, and automatic WebP format compression.

Developer REST API & API Keys

Programmatic image upload endpoints, quota controls, API key management, and authenticated webhooks for automated asset pipelines.

Global Edge Delivery (<25ms)

Ultra-low latency content delivery network caching distributed across multi-region edge locations for blazing fast page loads.

Community Asset Vault & Library

Explore thousands of open-source vector badges, UI avatars, developer icons, and mascots contributed by the creator community.

Easy Developer Integration

Plug PicPulse into any HTML, React, Vue, or Next.js app in less than 60 seconds.

<pic-icon> JavaScript SDK Example HTML / JS
<!-- 1. Include the PicPulse SDK in your <head> -->
<script src="https://picpulse.lushai.dev/api/v1/embed.js"></script>

<!-- 2. Drop-in Icon Tags by semantic slug -->
<pic-icon name="cute-cat-icon" size="48" alt="Cat Icon"></pic-icon>
<pic-icon name="brand-logo" category="Logos"></pic-icon>

<!-- 3. Drop-in Asset Tag with transformations -->
<pic-asset name="hero-banner" width="400" height="200" format="webp"></pic-asset>

<!-- 4. FontAwesome-style class support -->
<i class="pic-icon" data-name="search-icon"></i>
Direct REST API Upload (< 999 KB) POST
POST /api/v1/upload.php HTTP/1.1
Host: picpulse.lushai.dev
X-API-KEY: pic_live_YOUR_KEY
Content-Type: multipart/form-data; boundary=---Boundary

// JSON Response Output
{
  "success": true,
  "message": "Asset uploaded successfully via API Key",
  "data": {
    "asset": {
      "id": 42,
      "slug": "brand-rocket",
      "category": "Illustrations",
      "clean_url": "https://picpulse.lushai.dev/c/brand-rocket.png",
      "cdn_url": "https://picpulse.lushai.dev/cdn.php?slug=brand-rocket",
      "embed": {
        "html_embed": "<img src=\"https://picpulse.lushai.dev/c/brand-rocket.png\" alt=\"brand-rocket\" />",
        "markdown": "![brand-rocket](https://picpulse.lushai.dev/c/brand-rocket.png)",
        "sdk_tag": "<pic-icon name=\"brand-rocket\"></pic-icon>",
        "sdk_asset": "<pic-asset name=\"brand-rocket\"></pic-asset>"
      }
    }
  }
}
Create Free Account & Get API Key

PicPulse Frequently Asked Questions

Answers to common questions regarding asset hosting, direct hotlinks, upload rate limits, and web components.

Yes! Every image uploaded to PicPulse receives a permanent, direct global edge CDN hotlink with instant WebP/PNG delivery.

Simply include the lightweight PicPulse JavaScript script tag and embed custom web component tags like <pic-icon name="brand-logo"></pic-icon> in your HTML.

PicPulse supports WebP, PNG, JPG, JPEG, SVG, and GIF formats up to 999 KB per asset for rapid CDN delivery and micro-asset rendering.

Yes! PicPulse features a developer REST API (POST /api/v1/upload.php) supporting multi-part form data uploads with API token authentication.