Core Resources
- Tokens
- Customers
- Offerings
- Offering Purchase Intents
- Transactions
- Holders
- Organizations
- Wallets
- Offers
Offerings
Create an offering
Get offering by offeringId
POST
/
offering
Copy
curl --request POST \
--url https://api.decentri.org/offering \
--header 'Content-Type: application/json' \
--data '{
"subdomain": "acme",
"tokenId": "0x1234567890987654321",
"imageUrl": "https://example.com/image.png",
"title": "Decentri Fund",
"subtitle": "Decentralized investment fund",
"description": "A decentralized investment fund",
"type": "Equity",
"pricePerToken": 100,
"offeringPeriod": {
"startDate": "2025-09-01T00:00:00Z",
"endDate": "2025-09-30T23:59:59Z"
},
"investmentLimits": {
"minInvestment": 1000,
"maxInvestment": 10000,
"hardCap": 100000,
"softCap": 100000
}
}'
Copy
{
"offeringId": "cmVhY3Rpb24vMTIzNA75",
"title": "Decentri Fund",
"subtitle": "Decentralized investment fund",
"description": "A decentralized investment fund",
"token": {
"name": "ACME Token",
"symbol": "ACME",
"address": "0xc0ffee254729296a45a3885639AC7E10F9d54979",
"decimals": 18,
"owner": "0x999999cf1046e68e36E1aA2E0E07105eDDD1f08E",
"isPaused": false,
"createdAt": "2023-11-07T05:31:56Z"
},
"imageUrl": "https://example.com/image.png",
"type": "Equity",
"pricePerToken": 100,
"offeringPeriod": {
"startDate": "2021-09-01T00:00:00Z",
"endDate": "2021-09-30T23:59:59Z"
},
"investmentLimits": {
"minInvestment": 1000,
"maxInvestment": 10000,
"hardCap": 100000,
"softCap": 100000,
"currentlyInvested": 1000
},
"participants": 123
}
Body
application/json
Response
200
application/json
The offering has been successfully retrieved
The response is of type object
.
Copy
curl --request POST \
--url https://api.decentri.org/offering \
--header 'Content-Type: application/json' \
--data '{
"subdomain": "acme",
"tokenId": "0x1234567890987654321",
"imageUrl": "https://example.com/image.png",
"title": "Decentri Fund",
"subtitle": "Decentralized investment fund",
"description": "A decentralized investment fund",
"type": "Equity",
"pricePerToken": 100,
"offeringPeriod": {
"startDate": "2025-09-01T00:00:00Z",
"endDate": "2025-09-30T23:59:59Z"
},
"investmentLimits": {
"minInvestment": 1000,
"maxInvestment": 10000,
"hardCap": 100000,
"softCap": 100000
}
}'
Copy
{
"offeringId": "cmVhY3Rpb24vMTIzNA75",
"title": "Decentri Fund",
"subtitle": "Decentralized investment fund",
"description": "A decentralized investment fund",
"token": {
"name": "ACME Token",
"symbol": "ACME",
"address": "0xc0ffee254729296a45a3885639AC7E10F9d54979",
"decimals": 18,
"owner": "0x999999cf1046e68e36E1aA2E0E07105eDDD1f08E",
"isPaused": false,
"createdAt": "2023-11-07T05:31:56Z"
},
"imageUrl": "https://example.com/image.png",
"type": "Equity",
"pricePerToken": 100,
"offeringPeriod": {
"startDate": "2021-09-01T00:00:00Z",
"endDate": "2021-09-30T23:59:59Z"
},
"investmentLimits": {
"minInvestment": 1000,
"maxInvestment": 10000,
"hardCap": 100000,
"softCap": 100000,
"currentlyInvested": 1000
},
"participants": 123
}
Assistant
Responses are generated using AI and may contain mistakes.