Authentication
Authentication
Setting Up Your API Key
pythonCopy codeimport agentorbit
# Set your Agent Orbit API Key
agentorbit.api_key = "API_ORBIT_123456789" # Replace with your actual API keyUsing the API Key for Authentication
pythonCopy code# Retrieve all agents
agents = agentorbit.Agent.list()
# Print the retrieved agents
for agent in agents:
print(agent)Last updated