DocsGetting StartedIntroduction
Introduction
Welcome to the LoopSync API documentation. Our API allows developers to build powerful integrations, automate workflows, and extend the capabilities of the LoopSync platform.
What is LoopSync?
LoopSync is a verifiable compute platform that enables developers to deploy applications with guaranteed execution integrity. By using our API, you can programmatically manage your deployments, monitor analytics, and handle payments.
Making your first request
All API requests must be authenticated using your API Key. You can find your key in theDeveloper Console. Here is an example of how to fetch your user profile:
bash
curl -X GET https://api.loopsync.cloud/v2/user \
-H "Authorization: Bearer pk_live_837...98x2" \
-H "Content-Type: application/json"The response will be a JSON object containing your user details:
json
{
"id": "usr_829301",
"name": "Ripun Basumatary",
"email": "ripun@loopsync.cloud",
"plan": "pro",
"created_at": "2025-10-24T10:00:00Z"
}Base URL
All API requests should be made to the following base URL:
https://api.loopsync.cloud/v2