Skip to main content
GET
/
emails
Get Emails
curl --request GET \
  --url https://api.inprocess.world/api/emails \
  --header 'x-api-key: <api-key>'
{
  "email": "artist@example.com"
}

Authorizations

x-api-key
string
header
required

Artist API key for authentication. Get your API key from https://inprocess.world/manage/api-keys

Query Parameters

artist_address
string

The artist wallet address to look up the email for. Admin API key only. When provided, returns a single email object for that artist; when omitted, returns all emails paginated.

cursor
string

Pagination cursor for fetching the next page of results. Use the next_cursor value from the previous response.

limit
integer
default:100

Maximum number of email records to return per page.

Required range: 1 <= x <= 100

Response

Successful response

Single artist email response (normal API key, or admin API key with artist_address provided)

email
string | null

The email address associated with the artist, or null if not found