Get Active Artists
curl --request GET \
--url https://api.inprocess.world/api/artists/activeimport requests
url = "https://api.inprocess.world/api/artists/active"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.inprocess.world/api/artists/active', 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://api.inprocess.world/api/artists/active",
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://api.inprocess.world/api/artists/active"
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://api.inprocess.world/api/artists/active")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.inprocess.world/api/artists/active")
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{
"artists": [
{
"artist_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"username": "matt",
"wallets": [
{
"address": "0x51027631B9DEF86e088C33368eC4E3A4BE0aD264",
"type": "farcaster"
}
],
"created_count": 12,
"airdropped_count": 3,
"telegram_count": 1,
"web_count": 8,
"api_count": 2,
"sms_count": 1
}
],
"page": 1
}{
"message": "Invalid input",
"errors": [
{
"field": "limit",
"message": "Number must be less than or equal to 100"
}
]
}{
"message": "<string>"
}Artists
Get Active Artists
Paginated activity stats for artists on the In•Process protocol: moments created, airdrops, and moment counts by creation channel (telegram, web, api, sms).
GET
/
artists
/
active
Get Active Artists
curl --request GET \
--url https://api.inprocess.world/api/artists/activeimport requests
url = "https://api.inprocess.world/api/artists/active"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.inprocess.world/api/artists/active', 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://api.inprocess.world/api/artists/active",
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://api.inprocess.world/api/artists/active"
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://api.inprocess.world/api/artists/active")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.inprocess.world/api/artists/active")
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{
"artists": [
{
"artist_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"username": "matt",
"wallets": [
{
"address": "0x51027631B9DEF86e088C33368eC4E3A4BE0aD264",
"type": "farcaster"
}
],
"created_count": 12,
"airdropped_count": 3,
"telegram_count": 1,
"web_count": 8,
"api_count": 2,
"sms_count": 1
}
],
"page": 1
}{
"message": "Invalid input",
"errors": [
{
"field": "limit",
"message": "Number must be less than or equal to 100"
}
]
}{
"message": "<string>"
}Query Parameters
Restrict which moments are counted: approximately the last day, week, or month. all means no time limit.
Available options:
day, week, month, all Page size (1 to 100). Default 20.
Required range:
1 <= x <= 1001-based page number. Default 1.
Required range:
x >= 1Filter by wallet (0x + 40 hex, case-insensitive) or username substring.
Minimum string length:
1Metric to sort by.
Available options:
created_count, airdropped_count, telegram_count, web_count, api_count, sms_count Sort direction.
Available options:
asc, desc