You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Or use without context manager (creates new connection per request)
150
+
api = AsyncAmazonCreatorsApi(ID, SECRET, VERSION, TAG, COUNTRY)
151
+
items =await api.get_items(["B01N5IB20Q"])
152
+
```
153
+
154
+
> **Note:** All synchronous methods and parameters work identically in async mode. Use `async with` for better performance when making multiple API calls.
155
+
121
156
### Working with Models
122
157
123
158
All SDK models are re-exported through `amazon_creatorsapi.models` for convenient access:
0 commit comments