Ordinals Collections on Fractal

  • Get overall collection information

/collection/status

{
  "bestHeight": 10000,
  "totalCollection": 50000
}

  • Get list of collections

/collection/list&start={start}&limit={limit}

{
   start:0,
   total:100,
   detail:[
       {
           slugId:"xxxx",
           name:"OG PASS",
           supply: 1000,
           icon: "",
           holders: 900,
       }
   ]

}

  • Get details of a specific collection

/collection/{slugId}/info

{
   slugId:"xxxx",
   name:"OG PASS",
   supply: 1000,
   icon: "",
   holders: 900,
}

  • Get holder addresses for a specific collection

/collection/{slugId}/holders?height={height}&start={start}&limit={limit}

{
    total: 1000
    detail:[
        {
             address:"bc1q....",
             count: 10           
        }
    ]
}

  • Get collection summary for an address

/address/{address}/collection/list?start={start}&limit={limit}

{
   start:0,
   total:100,
   detail:[
       {
           slugId:"xxxx",
           name:"OG PASS",
           supply: 1000,
           icon: "",
           count:100
       }
   ]

}

  • Get summary of a specific collection for an address

/address/{address}/collection/{slugId}/summary

{
   
   slugId:"xxxx",
   name:"OG PASS",
   supply: 1000,
   icon: "",
   count:100
   
}

  • Get inscription list for a specific collection for an address

/address/{address}/collection/{slugId}/items?start={start}&limit={limit}

{
   start:0,
   total:100,
   detail:[
       {
           inscriptionId:"xxxx",
           ...
       }
   ]

}

  • Get collection list for a specific inscription

/inscription/{inscriptionId}/collection/list

[
       {
           slugId:"xxxx",
           name:"OG PASS",
           supply: 1000,
           icon: "",
           count:100
       }
]

Last updated