🗃️Project
Needs Account Authentication
Needs Account Authentication
This route returns a specific project of our app.The route first queries the database for project present based on the Id provided.The route then returns the project found.
Path parameters
projectIdstringRequired
Responses
200
Successful
application/json
401
Unauthorized
application/json
404
Not Found
application/json
500
Internal Server Error
application/json
401001
application/json
401002
application/json
401003
application/json
401004
application/json
get
GET /api/v1/project/{projectId} HTTP/1.1
Host: www.dyorbackend.tk
Accept: */*
{
"ok": true,
"result": {
"project": {
"id": "11839fbd-0b72-4704-86cb-04db0ca40a13",
"name": "Hello World.",
"address": "0xfec8d8ad28af2b66c6b9b03977eee7056338bfe4",
"symbol": "ETH",
"industry": "Hello World.",
"decimals": 18,
"network": "ethereum",
"description": "Hello world.",
"contract_inception": "2022-06-09 14:58:48.172000 +00:00",
"contract_age": 1000001,
"cmc_rank": 1000001,
"price": 786,
"market_cap": 608560748621946800000,
"fully_diluted_market_cap": 608560748621946800000,
"total_supply": 608560748621946800000,
"circulating_supply": 608560748621946800000,
"volume_24h": 608560748621946800000,
"market_pairs": 786,
"price_change_24h": 786,
"price_change_7d": 786,
"price_change_30d": 786,
"price_change_60d": 786,
"price_change_90d": 786,
"createdAt": "2022-06-09 14:58:48.172000 +00:00",
"watchLists": 786,
"social": {
"id": "www.website.com",
"website": "www.website.com",
"explorer": "www.website.com",
"twitter": "www.website.com",
"facebook": "www.website.com",
"instagram": "www.website.com",
"telegram": "www.website.com",
"discord": "www.website.com",
"reddit": "www.website.com",
"youtube": "www.website.com",
"github": "www.website.com",
"medium": "www.website.com"
},
"tags": [
{
"id": "11839fbd-0b72-4704-86cb-04db0ca40a13",
"tag": "Hello world."
}
],
"categories": [
{
"id": "11839fbd-0b72-4704-86cb-04db0ca40a13",
"category": "Hello world."
}
]
}
}
}
Last updated