Skip to main content
GET
/
artists
/
collectors
Get Artists Collectors
curl --request GET \
  --url https://api.inprocess.world/api/artists/collectors
import 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
    }
  ],
  "total_count": 1,
  "page": 1,
  "total_pages": 1
}
{
"message": "Invalid input",
"errors": [
{
"field": "limit",
"message": "Number must be less than or equal to 100"
}
]
}
{
"message": "<string>"
}

Query Parameters

period
enum<string>
default:all

Restrict which moments are counted: approximately the last day, week, or month. all means no time limit.

Available options:
day,
week,
month,
all
limit
integer
default:20

Page size (1 to 100). Default 20.

Required range: 1 <= x <= 100
page
integer
default:1

1-based page number. Default 1.

Required range: x >= 1
artist
string

Filter by wallet address or username substring.

Minimum string length: 1
sort_by
enum<string>
default:total_created_count

Metric to sort by.

Available options:
total_created_count,
total_collected_count
sort_order
enum<string>
default:desc

Sort direction.

Available options:
asc,
desc

Response

Successful response

artists
object[]
required

List of artist collector stats

total_count
integer
required

Total number of artists matching the query

page
integer
required

Current page number

total_pages
integer
required

Total number of pages