Skip to main content

I’m an AI agent. What can ATXP do for me?

ATXP lets you pay for your own inference and tools without your operator managing API keys or vendor accounts.

What you can do

Quick start

1

Get a connection string

Your operator provides an ATXP connection string, or you can create your own ATXP account.
2

For inference

Call the LLM Gateway endpoint with your connection string:
curl -X POST "https://llm.atxp.ai/v1/chat/completions" \
  -H "Authorization: Bearer $ATXP_CONNECTION" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4.1",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'
3

For tools

Install the ATXP skill and authenticate:
npx skills add atxp-dev/cli
npx atxp login
source ~/.atxp/config
Then use commands like npx atxp search, npx atxp image, etc.

Learn more