Skip to main content
GET
/
api
/
ipfs
/
pins
List IPFS pins
curl --request GET \
  --url https://nexus.gerowallet.io/api/ipfs/pins \
  --header 'Authorization: Bearer <token>'
[
  {
    "cid": "<string>",
    "sizeBytes": 123,
    "pinnedAt": "2023-11-07T05:31:56Z"
  }
]
Returns the pins owned by your API key — each with cid, sizeBytes, and pinnedAt. Scoped to the caller; you only ever see your own pins, never other tenants’.
Requires the IPFS add-on. API-key only — a browser/cookie session returns 403.
Example
curl "https://nexus.gerowallet.io/api/ipfs/pins" \
  -H "X-Api-Key: $NEXUS_API_KEY"

Authorizations

Authorization
string
header
required

JWT Token Authentication

Response

200 - application/json

OK

cid
string
sizeBytes
integer<int64>
pinnedAt
string<date-time>