Skip to content

Commit 52710c3

Browse files
committed
docs(AGENTS.md): add roxy.languages namespace for the new GET /api/v2/languages endpoint shipped in main repo today (2026-05-05, roxyapi commit e269498). Route returns { languages: [{ code, name, nativeName }] } for the 8 supported codes (en, tr, de, es, hi, pt, fr, ru) tagged "Languages" in the OpenAPI spec. AGENTS.md updated in 5 spots: intro Eleven to Twelve domains (line 3 now lists ...location, usage, languages), domain table adds a roxy.languages row after roxy.usage describing the supported response languages for the lang kwarg (line 51), i18n English-only list adds languages plus a runtime hint pointing at roxy.languages.list_languages() (line 116), priority order list appends Languages (line 146), quick reference table appends a "List supported languages" row mapped to roxy.languages.list_languages() (line 184). specs/openapi.json and the generated client will auto-sync on the next codegen + release pipeline run, at which point roxy.languages.list_languages() becomes a real callable method on the generated Roxy class.
1 parent 78c4f25 commit 52710c3

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

AGENTS.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# roxy-sdk (Python) - Agent Guide
22

3-
Python SDK for RoxyAPI. Eleven domains (Western astrology, Vedic astrology, numerology, tarot, biorhythm, I Ching, crystals, dreams, angel numbers, location, usage). One API key, sync and async.
3+
Python SDK for RoxyAPI. Twelve domains (Western astrology, Vedic astrology, numerology, tarot, biorhythm, I Ching, crystals, dreams, angel numbers, location, usage, languages). One API key, sync and async.
44

55
## Install and initialize
66

@@ -49,6 +49,7 @@ Type `roxy.` to see all available namespaces. Type `roxy.{domain}.` in an IDE wi
4949
| `roxy.angel_numbers` | Number meanings, universal digit-root lookup, daily |
5050
| `roxy.location` | City search with coordinates and timezone, countries |
5151
| `roxy.usage` | API usage stats and subscription info |
52+
| `roxy.languages` | Supported response languages for the `lang` kwarg (code, English name, native name) |
5253

5354
## Critical patterns
5455

@@ -113,7 +114,7 @@ card = roxy.tarot.get_daily_card(date="2026-04-22", lang="es")
113114
life_path = roxy.numerology.calculate_life_path(year=1990, month=1, day=15, lang="hi")
114115
```
115116

116-
Supported: `astrology`, `vedic_astrology`, `numerology`, `tarot`, `biorhythm`, `iching`, `crystals`, `angel_numbers`. English-only: `dreams`, `location`, `usage`.
117+
Supported: `astrology`, `vedic_astrology`, `numerology`, `tarot`, `biorhythm`, `iching`, `crystals`, `angel_numbers`. English-only: `dreams`, `location`, `usage`, `languages`. To list supported codes at runtime, call `roxy.languages.list_languages()`.
117118

118119
### Error handling
119120

@@ -143,7 +144,7 @@ except RoxyAPIError as e:
143144

144145
## Common tasks
145146

146-
Ordered by domain priority (Western, Vedic, Numerology, Tarot, Biorhythm, I Ching, Crystals, Dreams, Angel Numbers, Location, Usage).
147+
Ordered by domain priority (Western, Vedic, Numerology, Tarot, Biorhythm, I Ching, Crystals, Dreams, Angel Numbers, Location, Usage, Languages).
147148

148149
| Task | Code |
149150
|------|------|
@@ -182,6 +183,7 @@ Ordered by domain priority (Western, Vedic, Numerology, Tarot, Biorhythm, I Chin
182183
| Universal number lookup | `roxy.angel_numbers.analyze_number_sequence(number="1234")` |
183184
| Find city coordinates | `roxy.location.search_cities(q="Mumbai")` |
184185
| Check API usage | `roxy.usage.get_usage_stats()` |
186+
| List supported languages | `roxy.languages.list_languages()` |
185187

186188
## Field formats that trip agents
187189

0 commit comments

Comments
 (0)