Status
Retrieves the current status and detailed deployment metrics for a specific dApp deployment.
Path parameters
deploymentIdstringRequired
ID of the dApp deployment
Responses
200
Deployment status and metrics
application/json
404
Deployment not found
get
GET /api/deployments/dapp/{deploymentId}/status HTTP/1.1
Host: infa.idefi.ai
Accept: */*
{
"id": "dapp_001",
"name": "Decentralized Marketplace",
"version": "v1.0.0",
"configuration": {
"network": "Ethereum",
"networkLayer": "Layer 1",
"contractAddress": "0xABC123DEF456..."
},
"industry": "Finance",
"useCase": "Decentralized Finance Yield Optimization",
"deployedBy": "user123",
"deploymentStatus": "deployed",
"deploymentDate": "2025-03-01T12:00:00Z",
"deploymentMetrics": {
"deploymentTime": 118,
"gasUsed": 495000,
"securityScore": 9.1
},
"metadata": {
"notes": "Deployment finalized and operating on Layer 1."
}
}