Get Artists Collectors
curl --request GET \
--url https://api.inprocess.world/api/artists/collectorsimport requests
url = "https://api.inprocess.world/api/artists/collectors"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.inprocess.world/api/artists/collectors', 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/collectors",
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/collectors"
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/collectors")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.inprocess.world/api/artists/collectors")
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"
}
],
"total_created_count": 42,
"total_collected_count": 130
}
],
"page": 1
}{
"message": "Invalid input",
"errors": [
{
"field": "limit",
"message": "Number must be less than or equal to 100"
}
]
}{
"message": "<string>"
}Artists
Get Artists Collectors
Returns artists who are both creators and collectors on the In•Process protocol. Supports filtering by artist and time period.
GET
/
artists
/
collectors
Get Artists Collectors
curl --request GET \
--url https://api.inprocess.world/api/artists/collectorsimport requests
url = "https://api.inprocess.world/api/artists/collectors"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.inprocess.world/api/artists/collectors', 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/collectors",
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/collectors"
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/collectors")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.inprocess.world/api/artists/collectors")
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"
}
],
"total_created_count": 42,
"total_collected_count": 130
}
],
"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 address or username substring.
Minimum string length:
1Metric to sort by.
Available options:
total_created_count, total_collected_count Sort direction.
Available options:
asc, desc