The Changes log
curl --request GET \
--url https://purps.lol/api/v2/coins/{mint}/changesimport requests
url = "https://purps.lol/api/v2/coins/{mint}/changes"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://purps.lol/api/v2/coins/{mint}/changes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://purps.lol/api/v2/coins/{mint}/changes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://purps.lol/api/v2/coins/{mint}/changes"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://purps.lol/api/v2/coins/{mint}/changes")
.asString();require 'uri'
require 'net/http'
url = URI("https://purps.lol/api/v2/coins/{mint}/changes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"ok": true,
"data": [
{
"id": "<string>",
"actor": "owner",
"wallet": "<string>",
"kind": "strategy",
"summary": "<string>",
"status": "applied",
"error": "<string>",
"note": "<string>",
"createdAt": "<string>"
}
]
}{
"ok": true,
"error": "<string>"
}{
"ok": true,
"error": "<string>"
}{
"ok": true,
"error": "<string>"
}Creator authority
The Changes log
Every strategy change and position action on the coin, by its owner or an admin, newest first: the coin page’s Changes tab. A queued action moves to done or failed once the engine reports back. An admin’s wallet is never named.
GET
/
coins
/
{mint}
/
changes
The Changes log
curl --request GET \
--url https://purps.lol/api/v2/coins/{mint}/changesimport requests
url = "https://purps.lol/api/v2/coins/{mint}/changes"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://purps.lol/api/v2/coins/{mint}/changes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://purps.lol/api/v2/coins/{mint}/changes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://purps.lol/api/v2/coins/{mint}/changes"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://purps.lol/api/v2/coins/{mint}/changes")
.asString();require 'uri'
require 'net/http'
url = URI("https://purps.lol/api/v2/coins/{mint}/changes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"ok": true,
"data": [
{
"id": "<string>",
"actor": "owner",
"wallet": "<string>",
"kind": "strategy",
"summary": "<string>",
"status": "applied",
"error": "<string>",
"note": "<string>",
"createdAt": "<string>"
}
]
}{
"ok": true,
"error": "<string>"
}{
"ok": true,
"error": "<string>"
}{
"ok": true,
"error": "<string>"
}Path Parameters
The token's mint address (Solana) or contract address (Robinhood Chain).
Query Parameters
How many rows.
Required range:
1 <= x <= 100Only rows created before this ISO 8601 date-time in UTC, ending in Z (e.g. 2026-09-24T10:00:00Z), for paging.