Retrieve decrypted training data,
classification, and metadata for a given IPFS cid.
curl -XPOST \
-H "content-type: application/json" \
--data '{"cid":"..."}' \
https://ai.perkinsfund.org/api/traceix/v1/ipfs/search
{
"copyright": "(c) PCEF all rights reserved",
"error": {},
"request_timestamp": 1762267143.519864,
"results": {
"decrypted_training_data": {
...
},
"metadata": {
"model_information": {
"model_accuracy": "91.64%",
"model_version": "o1"
},
"payment_transaction": {
"amount_paid": "...",
"payment_tx": "...",
"payment_tx_url": "https://solscan.io/tx/...",
"thrt_price_at_payment": ...
},
"upload_information": {
"file_sha_hash": "...",
"license": "CC BY 4.0",
"upload_timestamp": ...
}
},
"model_classification_info": {
"date_classified_on": ...,
"identified_class": "...",
"verdict_seconds": ...
}
},
"sponsor": {
"link": "...",
"title": "..."
},
"success": true
}
{
"copyright": "(c) PCEF all rights reserved",
"error": { "error_message": "Invalid CID provided" },
"request_timestamp": 1762267194.2231338,
"results": null,
"sponsor": {
"link": "...",
"title": "..."
},
"success": false
}