# Sharemyhtml — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Send virtual air kisses to other users on ShareMyHTML and monitor how many kisses you've received in return. Track your kiss count in real-time to see how much appreciation your content is getting from the community.

**Category:** Social Media | **Website:** [sharemyhtml.com/](https://sharemyhtml.com/) | **Docs:** [parse.bot/marketplace/b219ed68-17d3-4b0d-931a-ab29ef0a0513/sharemyhtml-com-api](https://parse.bot/marketplace/b219ed68-17d3-4b0d-931a-ab29ef0a0513/sharemyhtml-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-sharemyhtml-com-api-b219ed68/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_kiss_count

Retrieve the current global air kiss count from ShareMyHTML. This is the cumulative total of all air kisses ever sent by all users.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sharemyhtml-com-api-b219ed68/get_kiss_count \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### send_air_kisses

Send air kisses to ShareMyHTML. Each call sends the specified number of kisses (1-50) sequentially. Returns the number successfully sent and the new global total. Rate-limited to ~200 requests per minute server-side; if the limit is hit mid-batch, partial results are returned.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `count` | integer | No | Number of air kisses to send, between 1 and 50. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sharemyhtml-com-api-b219ed68/send_air_kisses \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"count":"<integer>"}'
```
