Skip to content

Get Collection Info

This page documents the API endpoint for retrieving detailed information about a Collection on the In Process protocol, including collection metadata, default admin, payout recipient, and timestamps.

Endpoint

GET https://inprocess.world/api/collection

Query Parameters

NameTypeRequiredDefaultDescription
collectionAddressstringYesThe contract address of the Collection
chainIdstringNo8453Chain ID of the collection (default: Base, 8453)

Example Requests

cURL
# With chainId (optional, defaults to 8453)
curl "https://inprocess.world/api/collection?collectionAddress=0x06a701Ae65582B92Af48cDff45a8B20DcA3714cA&chainId=8453"
 
# Without chainId (uses default: 8453)
curl "https://inprocess.world/api/collection?collectionAddress=0x06a701Ae65582B92Af48cDff45a8B20DcA3714cA"

Example Response

{
  "id": "bceddfb3-28f2-49f3-8669-73a813a06b90",
  "address": "0x06a701Ae65582B92Af48cDff45a8B20DcA3714cA",
  "chain_id": 8453,
  "name": "My Collection",
  "uri": "ar://1wMmKuaz-VdxmruOQJuYS-3nfU3zlNKmPNpc79Ou-qM",
  "metadata": {
    "name": "My Collection",
    "image": "ar://U2PRZhy-S_Lrz_AMx-Qh2n6x8Lm3smO9SsLuno1DXRU",
    "description": "A description of the collection",
    "content": {
      "mime": "audio/mpeg",
      "uri": "ar://z5RXUDCbzwHVJ49emY7XteJScYYP4baBxgVeaqFM3rM"
    }
  },
  "default_admin": {
    "address": "0x4b4324bcC6dB9380ABBbbD20B24A16C11FB5B38A",
    "username": "artist name 1"
  },
  "payout_recipient": "0x4b4324bcC6dB9380ABBbbD20B24A16C11FB5B38A",
  "created_at": "2025-06-07T20:41:35+00:00",
  "updated_at": "2025-08-12T12:28:41+00:00"
}

Response Properties

Response Object

PropertyTypeDescription
addressstringContract address of the collection
chain_idnumberChain ID where the collection exists
idstringUUID of the collection
namestringCollection name
uristringMetadata URI
metadataobjectCollection metadata object
metadata.namestringCollection name from metadata
metadata.imagestringImage URI for the collection
metadata.descriptionstringDescription of the collection
metadata.contentobjectContent object with media information
metadata.content.mimestringMIME type of the content
metadata.content.uristringURI of the content
default_adminobjectOriginal admin set at collection creation
default_admin.addressstringAddress of the default admin
default_admin.usernamestringUsername of the default admin, if available
payout_recipientstringAddress to receive sale proceeds
created_atstringISO timestamp when the collection was created
updated_atstringISO timestamp when the collection was updated