Skip to content

Commit 709b18d

Browse files
kriptoburakclaude
andcommitted
fix: correct MPP pricing for follower check & article to $0.00105
Follow check and article endpoints were showing $0.00075 (5 credits) instead of the canonical $0.00105 (7 credits) from lib/mpp/pricing.ts. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 3d2f161 commit 709b18d

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ TweetClaw uses Xquik's credit-based pricing. 1 credit = $0.00015.
3232
| Read (user profile, verified followers, followers you know) | 2 | $0.0003 |
3333
| Read (favoriters) | 1 | $0.00015 |
3434
| Read (trends) | 3 | $0.00045 |
35-
| Follow check, article | 5 | $0.00075 |
35+
| Follow check, article | 7 | $0.00105 |
3636
| Write (tweet, like, retweet, follow, DM, etc.) | 10 | $0.0015 |
3737
| Extraction (tweets, replies, quotes, mentions, posts, likes, media, search, favoriters, retweeters, community members, people search, list members, list followers) | 1/result | $0.00015/result |
3838
| Extraction (followers, following, verified followers) | 2/result | $0.0003/result |
@@ -84,7 +84,7 @@ openclaw config set plugins.entries.tweetclaw.config.tempoSigningKey "$MPP_SIGNI
8484

8585
**Security**: Always store your signing key in an environment variable — never paste raw keys into shell commands or config files.
8686

87-
MPP-eligible endpoints: tweet lookup ($0.00015), tweet search ($0.00015/tweet), user lookup ($0.00015), user tweets ($0.00015/tweet), follower check ($0.00075), article lookup ($0.00075), media download ($0.00015/media), trends ($0.00045), X trends ($0.00045), quotes ($0.00015/tweet), replies ($0.00015/tweet), retweeters ($0.00015/user), favoriters ($0.00015/user), thread ($0.00015/tweet), user likes ($0.00015/tweet), user media ($0.00015/tweet).
87+
MPP-eligible endpoints: tweet lookup ($0.00015), tweet search ($0.00015/tweet), user lookup ($0.00015), user tweets ($0.00015/tweet), follower check ($0.00105), article lookup ($0.00105), media download ($0.00015/media), trends ($0.00045), X trends ($0.00045), quotes ($0.00015/tweet), replies ($0.00015/tweet), retweeters ($0.00015/user), favoriters ($0.00015/user), thread ($0.00015/tweet), user likes ($0.00015/tweet), user media ($0.00015/tweet).
8888

8989
### Optional settings
9090

skills/tweetclaw/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ TweetClaw uses Xquik's credit-based pricing. 1 credit = $0.00015.
3535
| Read (tweet, search, timeline, bookmarks, etc.) | 1 | $0.00015 |
3636
| Read (user profile) | 2 | $0.0003 |
3737
| Read (trends) | 3 | $0.00045 |
38-
| Follow check, article | 5 | $0.00075 |
38+
| Follow check, article | 7 | $0.00105 |
3939
| Write (tweet, like, retweet, follow, DM, etc.) | 10 | $0.0015 |
4040
| Extraction (tweets, replies, quotes, mentions, posts, likes, media, search, favoriters, retweeters, community members, people search, list members, list followers) | 1/result | $0.00015/result |
4141
| Extraction (followers, following, verified followers) | 2/result | $0.0003/result |
@@ -58,7 +58,7 @@ TweetClaw uses Xquik's credit-based pricing. 1 credit = $0.00015.
5858
- **Credits**: Top up via `POST /api/v1/credits/topup` ($10 minimum). Works with all 120 endpoints.
5959
- **MPP**: 16 read-only endpoints accept anonymous on-chain payments. No account needed. SDK: `npm i mppx viem`.
6060

61-
MPP pricing: tweet lookup ($0.00015), tweet search ($0.00015/tweet), user lookup ($0.00015), user tweets ($0.00015/tweet), follower check ($0.00075), article ($0.00075), media download ($0.00015/media), trends ($0.00045), X trends ($0.00045), quotes ($0.00015/tweet), replies ($0.00015/tweet), retweeters ($0.00015/user), favoriters ($0.00015/user), thread ($0.00015/tweet), user likes ($0.00015/tweet), user media ($0.00015/tweet).
61+
MPP pricing: tweet lookup ($0.00015), tweet search ($0.00015/tweet), user lookup ($0.00015), user tweets ($0.00015/tweet), follower check ($0.00105), article ($0.00105), media download ($0.00015/media), trends ($0.00045), X trends ($0.00045), quotes ($0.00015/tweet), replies ($0.00015/tweet), retweeters ($0.00015/user), favoriters ($0.00015/user), thread ($0.00015/tweet), user likes ($0.00015/tweet), user media ($0.00015/tweet).
6262

6363
## When to Use
6464

src/api-spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ const API_SPEC: readonly EndpointInfo[] = [
626626
{ description: 'Source username', in: 'query', name: 'source', required: true, type: 'string' },
627627
{ description: 'Target username', in: 'query', name: 'target', required: true, type: 'string' },
628628
],
629-
mpp: { intent: 'charge', price: '$0.00075/call' },
629+
mpp: { intent: 'charge', price: '$0.00105/call' },
630630
path: '/api/v1/x/followers/check',
631631
responseShape: '{ isFollowing, isFollowedBy, sourceUsername, targetUsername }',
632632
summary: 'Check follow relationship between two users',
@@ -638,7 +638,7 @@ const API_SPEC: readonly EndpointInfo[] = [
638638
parameters: [
639639
{ description: 'Tweet ID of the X Article', in: 'path', name: 'tweetId', required: true, type: 'string' },
640640
],
641-
mpp: { intent: 'charge', price: '$0.00075/call' },
641+
mpp: { intent: 'charge', price: '$0.00105/call' },
642642
path: '/api/v1/x/articles/:tweetId',
643643
responseShape: '{ article: { title, previewText, coverImageUrl, contents, createdAt, likeCount, replyCount, quoteCount, viewCount }, author? }',
644644
summary: 'Get full content of an X Article (long-form post) by tweet ID',

0 commit comments

Comments
 (0)