Retrieve your organization
curl --request GET \
--url https://api.infinitecreator.com/v1/organizationimport requests
url = "https://api.infinitecreator.com/v1/organization"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.infinitecreator.com/v1/organization', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "<string>",
"balance": 123
}{
"code": "<string>",
"message": "<string>",
"context": {}
}{
"code": "<string>",
"message": "<string>",
"context": {}
}{
"code": "<string>",
"message": "<string>",
"context": {}
}{
"code": "<string>",
"message": "<string>",
"context": {}
}{
"code": "<string>",
"message": "<string>",
"context": {}
}{
"code": "<string>",
"message": "<string>",
"context": {}
}{
"code": "<string>",
"message": "<string>",
"context": {}
}{
"code": "<string>",
"message": "<string>",
"context": {}
}Retrieve your organization
Retrieves your organization.
GET
/
v1
/
organization
Retrieve your organization
curl --request GET \
--url https://api.infinitecreator.com/v1/organizationimport requests
url = "https://api.infinitecreator.com/v1/organization"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.infinitecreator.com/v1/organization', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "<string>",
"balance": 123
}{
"code": "<string>",
"message": "<string>",
"context": {}
}{
"code": "<string>",
"message": "<string>",
"context": {}
}{
"code": "<string>",
"message": "<string>",
"context": {}
}{
"code": "<string>",
"message": "<string>",
"context": {}
}{
"code": "<string>",
"message": "<string>",
"context": {}
}{
"code": "<string>",
"message": "<string>",
"context": {}
}{
"code": "<string>",
"message": "<string>",
"context": {}
}{
"code": "<string>",
"message": "<string>",
"context": {}
}Last modified on June 19, 2026
Was this page helpful?
⌘I