GET
/
files
/
public
/
pin_by_cid
curl --request GET \
  --url https://api.pinata.cloud/v3/files/public/pin_by_cid \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "jobs": [
      {
        "id": "<string>",
        "cid": "<string>",
        "name": "<string>",
        "status": "<string>",
        "keyvalues": {},
        "host_nodes": [
          "<string>"
        ],
        "group_id": "<string>",
        "date_queued": "<string>"
      }
    ],
    "next_page_token": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

order
enum<string>

Change the order of the results by date_queued

Available options:
ASC,
DESC
status
enum<string>

Filter pin by CID status

Available options:
prechecking,
backfilled,
retreiving,
expired,
searching,
over_free_limit,
over_max_size,
invalid_object,
bad_host_node
cid
string

Filter queue by CID

limit
string

Limit the number of results returned when querying the queue

pageToken
string

Paginate through pin by cid request results

Response

200 - application/json
OK
data
object