Use ArRENCE's 25+ specialist AI experts from your own code, apps, and workflows.
An API (Application Programming Interface) lets your software talk directly to ArRENCE AI. Instead of using the chat interface in your browser, you can send questions and receive expert answers programmatically — from a Python script, a mobile app, a Discord bot, a spreadsheet, or any tool that supports HTTP requests.
Think of it as a direct line to ArRENCE's specialist experts that you can plug into anything you build.
ArRENCE's API follows the OpenAI chat completions format, which means any tool, library, or application already built for the OpenAI API can work with ArRENCE by simply changing the base URL and API key. No code rewrites needed.
from openai import OpenAI
client = OpenAI(
base_url="https://arrenceai.com/v1",
api_key="your-arrence-api-key"
)
response = client.chat.completions.create(
model="Astronomy", # or any ArRENCE specialist
messages=[
{"role": "user", "content": "How does a pulsar work?"}
]
)
print(response.choices[0].message.content)
API access is available to paid subscribers. If you have an ArRENCE subscription, just reach out and we'll provide an API key tied to your account — no extra charge.
Request API Access