Make your first request
After obtaining your token, you are now able to make your first request.
You can make a request to Manager#/oauth/token/info to verify that everything is working.
- Development
- Pre-Production
- Production
curl --request GET \
--url https://manager.loop-os.dev.theloop.tech/oauth/token/info \
--header 'Authorization: Bearer <token>'
curl --request GET \
--url https://manager.loop-os.pre-production.theloop.tech/oauth/token/info \
--header 'Authorization: Bearer <token>'
curl --request GET \
--url https://manager.loop-os.com/oauth/token/info \
--header 'Authorization: Bearer <token>'
On success, you get a response similar to this one:
{
"scope": [
"app"
],
"expires_in": 385,
"application": {
"uid": "KO1MsABb-DG8hxbMPPCiUxB6VPLXiDQBlggW3CQ6SZk",
"name": "core instance",
"kind": "core",
"id": 32
},
"created_at": 1741700100
}
Congratulations! You're ready to make requests to our API with an access token.