Overview
#
Base URLEnvironment | URL |
---|---|
Production | https://engine.hyperbeam.com/v0 |
Testing | https://enginetest.hyperbeam.com/v0 |
#
AuthenticationPlease contact us via Discord or email for an API key.
To authenticate, provide your API as a bearer token in the Authorization
header.
For example, Authorization: Bearer BImPtQWrCnb7aceCdlGQ-qniBJFNH2-1tVv7OjoHuQA
curl -X POST \ -H 'Authorization: Bearer BImPtQWrCnb7aceCdlGQ-qniBJFNH2-1tVv7OjoHuQA' \ localhost:8084/v0/vm
# With crx filecurl -X POST \ -H 'Authorization: Bearer <your-api-key>' \ -H 'Content-Type: multipart/form-data' \ https://engine.hyperbeam.com/v0/vm \ --form 'body={"ublock":true,"extension":{"field":"ex"}}' \ --form 'ex=@/tmp/ext.crx;type=application/x-chrome-extension'
# With zip filecurl -X POST \ -H 'Authorization: Bearer <your-api-key>' \ -H 'Content-Type: multipart/form-data' \ https://engine.hyperbeam.com/v0/vm \ --form 'body={"ublock":true,"extension":{"field":"ex"}}' \ --form 'ex=@/tmp/ext.zip;type=application/zip'