Consumers
Consumers or Developers are the ones that are in need of computation for their applications. Consumers can define in accessible Javascript code their requirements and get access to computational resources through the Acurast Marketplace by being matched with Processors.
The so-called Acurast Jobs are executed by Processors in their Trusted Execution Environment that provide the Output of the Job and a Proof of Execution to the defined destination chain.
Developers can define their requirements in code and have access complete access to Acurast's Modules


Get Started
Get access to computational resources through the Acurast Console. Read more on the steps on How To Get Started, based on your production or testing needs.
Not sure if your ecosystem is supported? Take a look at Ecosystems & Integrations.


- Go to the Acurast Console and log in with your Talisman Wallet or your PolkadotJS Extension.
- Fund Account - Get Testnet funds for your account with "Fund Account", to be able to create Jobs.
- Go to "Create Job" and select your destination, the ecosystem you're building in.
- Select an existing template, adapt it or write your own code that fits your needs. Test your code with "Test Code".
- Select your own Processor or use public ones.
- Define your execution schedule with the parameters such as start and endtime, interval etc.
- Specify your usage parameters.
- Specify your additional parameters such as the reward.
- Publish your Job and wait for your first fulfillment.
Examples
Code examples for the Acurast Enterprise module for off-chain data and computation.
HTTPS GET Request
Request from an API with the result of an asset price.
httpGET(
"https://api.binance.com/api/v3/ticker/price?symbol=BNBBTC",
{},
(response, certificate) => {
console.log("response", response);
const price = JSON.parse(response)["price"] * 10 ** 6;
console.log("price", price);
const payload = { price: price, timestamp: Date.now() / 1000 };
const packedPayload = pack(payload);
const signature = sign(payload);
httpPOST(
"https://oracle.free.beeceptor.com",
JSON.stringify({
signature: signature,
certificate: certificate,
payload: packedPayload,
}),
{},
(response, certificate) => {},
(errorMessage) => {}
);
},
(errorMessage) => {}
);
Verifiable Randomness
Getting a randomized output from the Trusted Execution Environment.
return fulfill(generateSecureRandomHex());