API Methods
GET Method
Code Samples for using the API
// Some code
curl -X GET https://GETMethod.zerve.cloud/output
-H "Accept: application/json" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"// Some code
import requests
url = "https://GETMethod.zerve.cloud/output"
api_token = "YOUR_API_TOKEN" # Replace with your actual API token
headers = { "Accept": "application/json", "Authorization": f"Bearer {api_token}" }
response = requests.get(url, headers=headers)
if response.status_code == 200:
print(response.json())
else:
print(f"Error: {response.status_code}, {response.text}")Postman

POST Method
Code Samples for using the API

API Method Responses
Status
Meaning
Description
Last updated

