# StableInfluencer TokPortal Profile Edit Request

> StableInfluencer TokPortal Profile Edit Request is a paid API for AI agents from stableinfluencer.dev, paid per call via x402, $8/call, status unknown (last checked 2026-09-13).

Creates a paid edit request to update the profile details (username, display name, bio, avatar, or link-in-bio) of a wallet-owned delivered TokPortal account by its saved account ID.

## Facts

- Endpoint: POST https://stableinfluencer.dev/api/accounts/:id/edit-request
- Price: $8/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stableinfluencer-dev-a32407cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6QxbHWTbeGNI7iVmQpUOk

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability stableinfluencer-dev-a32407cd -d '<json body>'
```

Example prompt: Submit a TokPortal profile edit request for my delivered account (ID: acc_8Xk3mPq91) — I need to update the username to @morningbloom_official, change the display name to 'Morning Bloom', and update the bio to 'Official TikTok for Morning Bloom Coffee'.

## When to prefer this

Use this endpoint when a TokPortal account has already been delivered to the wallet owner and the user needs to change profile details such as username, display name, bio, avatar, or link-in-bio. This is distinct from in-review account corrections (used before delivery) and from creating new campaigns. Prefer this over general account update flows when targeting a specific delivered TokPortal account by its saved account ID within the StableInfluencer/TokPortal ecosystem.

## Known failure modes

- Account ID not found or not owned by the calling wallet — 404 or 403 error
- Account is still in-review and not yet delivered — edit requests must use the correction flow instead
- Payment of $8 USDC fails or is rejected — 402 Payment Required
- Duplicate edit request already pending for the same account — conflict error
- Invalid or missing required profile fields in the request body — 400 validation error
- Account has already been transferred or is no longer mutable

## How this service works

Create a paid TokPortal profile edit request for a wallet-owned delivered account by TokPortal saved account id. Use after delivery when username, display name, bio, avatar, or link-in-bio needs to change; this is separate from in-review account corrections.

## Output

Returns a confirmation of the paid profile edit request, including the edit request ID, the target account ID, the requested field changes (username, display name, bio, avatar, link-in-bio), and the status of the request indicating it is queued for processing post-delivery.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "type": "object",
     "properties": {
      "requested_username": {
       "type": "string",
       "minLength": 1,
       "maxLength": 24
      },
      "requested_visible_name": {
       "type": "string",
       "minLength": 1,
       "maxLength": 30
      },
      "requested_biography": {
       "type": "string",
       "minLength": 1,
       "maxLength": 80
      },
      "requested_profile_picture_url": {
       "type": "string",
       "format": "uri"
      },
      "requested_link_in_bio": {
       "type": "string",
       "format": "uri"
      }
     },
     "additionalProperties": false
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stableinfluencer-dev-a32407cd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableinfluencer.dev](https://www.zero.xyz/host/stableinfluencer.dev/llms.txt)
