Where creator authority stands
curl --request GET \
--url https://purps.lol/api/v2/coins/{mint}/authorityimport requests
url = "https://purps.lol/api/v2/coins/{mint}/authority"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://purps.lol/api/v2/coins/{mint}/authority', 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}/authority",
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}/authority"
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}/authority")
.asString();require 'uri'
require 'net/http'
url = URI("https://purps.lol/api/v2/coins/{mint}/authority")
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": {
"mint": "<string>",
"url": "<string>",
"available": true,
"reason": "<string>",
"state": "off",
"owner": "<string>",
"openToPublic": true,
"pendingRequest": true,
"cooldowns": [
{}
],
"marginHold": {},
"limits": {
"maxLeverage": 123,
"actionsPerDay": 123,
"cooldownMinutes": 123,
"minDayVolumeUsd": 123,
"minOpenInterestUsd": 123,
"maxShareOfOiBps": 123,
"noteLength": {}
}
}
}{
"ok": true,
"error": "<string>"
}{
"ok": true,
"error": "<string>"
}{
"ok": true,
"error": "<string>"
}Creator authority
Where creator authority stands
Whether a coin can be steered from outside at all, whether authority is off, on or frozen, who holds it, whether a request is waiting for review, the cooldowns and margin hold running now, and the platform’s limits (leverage cap, actions a day, cooldown length, market depth floors, note length). Read it before preparing a change. Nothing here says whether any wallet is a platform admin.
GET
/
coins
/
{mint}
/
authority
Where creator authority stands
curl --request GET \
--url https://purps.lol/api/v2/coins/{mint}/authorityimport requests
url = "https://purps.lol/api/v2/coins/{mint}/authority"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://purps.lol/api/v2/coins/{mint}/authority', 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}/authority",
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}/authority"
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}/authority")
.asString();require 'uri'
require 'net/http'
url = URI("https://purps.lol/api/v2/coins/{mint}/authority")
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": {
"mint": "<string>",
"url": "<string>",
"available": true,
"reason": "<string>",
"state": "off",
"owner": "<string>",
"openToPublic": true,
"pendingRequest": true,
"cooldowns": [
{}
],
"marginHold": {},
"limits": {
"maxLeverage": 123,
"actionsPerDay": 123,
"cooldownMinutes": 123,
"minDayVolumeUsd": 123,
"minOpenInterestUsd": 123,
"maxShareOfOiBps": 123,
"noteLength": {}
}
}
}{
"ok": true,
"error": "<string>"
}{
"ok": true,
"error": "<string>"
}{
"ok": true,
"error": "<string>"
}