POST
/
farcaster
/
v2
/
marketplace
/
listings
/
buy
curl --request POST \
  --url https://build.wield.xyz/farcaster/v2/marketplace/listings/buy \
  --header 'API-KEY: <api-key>' \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --data '{
  "listingId": "<string>",
  "offerId": "<string>"
}'
{
  "success": true,
  "result": {
    "listing": {}
  },
  "source": "v2"
}

Headers

authorization
string
default:Bearer <token>
required

User authorization token, entered as Bearer <token>

API-KEY
string
default:DEMO_REPLACE_WITH_FREE_API_KEY
required

Free API key needed to authorize requests, grab one at docs.wield.xyz

Body

application/json
listingId
string
offerId
string

Response

200 - application/json
Marketplace listing bought successfully
success
boolean
result
object
source
string
Example:

"v2"