Coins launched on purps.lol
curl --request GET \
--url https://purps.lol/api/v1/launchesimport requests
url = "https://purps.lol/api/v1/launches"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://purps.lol/api/v1/launches', 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/v1/launches",
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/v1/launches"
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/v1/launches")
.asString();require 'uri'
require 'net/http'
url = URI("https://purps.lol/api/v1/launches")
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>",
"name": "<string>",
"symbol": "<string>",
"imageUrl": "<string>",
"status": "pending",
"venue": "dbc",
"quote": {
"mint": "<string>",
"symbol": "<string>",
"iconUrl": "<string>"
},
"priceQuote": 123,
"curvePct": 123,
"raisedQuote": 123,
"devBuyQuote": 123,
"fees": {
"preset": "<string>",
"platformPpm": 123,
"creatorPpm": 123,
"creatorBps": 123
},
"creatorWallet": "<string>",
"feeWallet": "<string>",
"airdrop": {
"potQuote": 123,
"paidQuote": 123,
"lastAt": "<string>"
},
"migratedAt": "<string>",
"createdAt": "<string>",
"url": "<string>"
}
]
}{
"ok": true,
"error": "<string>"
}Coins
Coins launched on purps.lol
The most recent coins launched on purps.lol, live and graduated, with curve progress, what they raised and what they have paid holders.
GET
/
launches
Coins launched on purps.lol
curl --request GET \
--url https://purps.lol/api/v1/launchesimport requests
url = "https://purps.lol/api/v1/launches"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://purps.lol/api/v1/launches', 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/v1/launches",
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/v1/launches"
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/v1/launches")
.asString();require 'uri'
require 'net/http'
url = URI("https://purps.lol/api/v1/launches")
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>",
"name": "<string>",
"symbol": "<string>",
"imageUrl": "<string>",
"status": "pending",
"venue": "dbc",
"quote": {
"mint": "<string>",
"symbol": "<string>",
"iconUrl": "<string>"
},
"priceQuote": 123,
"curvePct": 123,
"raisedQuote": 123,
"devBuyQuote": 123,
"fees": {
"preset": "<string>",
"platformPpm": 123,
"creatorPpm": 123,
"creatorBps": 123
},
"creatorWallet": "<string>",
"feeWallet": "<string>",
"airdrop": {
"potQuote": 123,
"paidQuote": 123,
"lastAt": "<string>"
},
"migratedAt": "<string>",
"createdAt": "<string>",
"url": "<string>"
}
]
}{
"ok": true,
"error": "<string>"
}