Skip to main content

Create Reply

method
string
POST
endpoint
string
/replies
Creates a new reply or comment.

Authentication

Requires JWT authentication via Authorization: Bearer <token> header.

Request Body

text
string
required
The content of the reply
mint
string
required
The mint address of the coin being replied to
parentId
string
Optional parent reply ID for nested replies
image
string
Optional image URL or data to attach to the reply

Response

201
object
Created - Returns the newly created reply
curl -X POST "https://frontend-api-v3.pump.fun/replies" \
  -H "Authorization: Bearer <your_token>" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{
    "text": "Great project!",
    "mint": "7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr"
  }'

Get Replies by Mint

method
string
GET
endpoint
string
/replies/
Retrieves all replies for a specific coin mint address.

Authentication

Requires JWT authentication via Authorization: Bearer <token> header.

Path Parameters

mint
string
required
The mint address of the coin

Query Parameters

limit
number
required
Maximum number of replies to return
offset
number
required
Number of replies to skip (for pagination)
user
string
required
Filter replies by user address
reverseOrder
boolean
required
If true, returns replies in reverse chronological order

Response

200
object
Success - Returns list of replies
curl -X GET "https://frontend-api-v3.pump.fun/replies/<mint>?limit=50&offset=0&user=<user_address>&reverseOrder=false" \
  -H "Authorization: Bearer <your_token>" \
  -H "Accept: application/json"

Get User Replies

method
string
GET
endpoint
string
/replies/user-replies/
Retrieves all replies made by a specific user.

Authentication

Requires JWT authentication via Authorization: Bearer <token> header.

Path Parameters

address
string
required
The wallet address of the user

Query Parameters

limit
number
required
Maximum number of replies to return
offset
number
required
Number of replies to skip (for pagination)

Response

200
object
Success - Returns list of user’s replies
curl -X GET "https://frontend-api-v3.pump.fun/replies/user-replies/<address>?limit=50&offset=0" \
  -H "Authorization: Bearer <your_token>" \
  -H "Accept: application/json"

Build docs developers (and LLMs) love