Skip to main content
GET
/
artists
/
active
Get Active Artists
curl --request GET \
  --url https://api.inprocess.world/api/artists/active
import 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
    }
  ],
  "total_count": 100,
  "page": 1,
  "total_pages": 5
}
{
  "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 (0x + 40 hex, case-insensitive) or username substring.

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

Metric to sort by.

Available options:
created_count,
airdropped_count,
telegram_count,
web_count,
api_count,
sms_count
sort_order
enum<string>
default:desc

Sort direction.

Available options:
asc,
desc

Response

Successful response

artists
object[]
required
total_count
integer
required

Total artists matching the request (for pagination).

Required range: x >= 0
page
integer
required

Current page number.

Required range: x >= 1
total_pages
integer
required

Total pages at the current limit.

Required range: x >= 0