title: "Using the AccelFury API" date: "2024-06-10" summary: "How to send jobs and query status over REST and GraphQL."
Using the AccelFury API
Our unified interface covers proof generation and AI acceleration. Send hardware jobs using the call below:
curl -H "Authorization: Bearer <token>" \
-d '{"bitstream":"sha256.bit","input":"0x1234"}' \
https://accelfury.com/api/v1/jobs
You can also use our JavaScript SDK:
import { createJob } from '@accelfury/sdk'
const job = await createJob({
bitstream: 'sha256.bit',
input: '0x1234'
})
console.log(job.id)
For more advanced options, continue with our ZK SDK guide. Our docs include benchmarks comparing against Cysic's GPU-based flow so you can make an informed decision.