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
Copy file name to clipboardExpand all lines: README.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,14 +41,15 @@ npx @opensea/cli collections get mfers
41
41
Set your API key via environment variable or flag:
42
42
43
43
```bash
44
-
export OPENSEA_API_KEY=your-api-key
44
+
# Get an instant free-tier API key (no signup needed)
45
+
export OPENSEA_API_KEY=$(curl -s -X POST https://api.opensea.io/api/v2/auth/keys | jq -r '.api_key')
45
46
opensea collections get mfers
46
47
47
48
# or pass inline
48
49
opensea --api-key your-api-key collections get mfers
49
50
```
50
51
51
-
Get an API key at [docs.opensea.io](https://docs.opensea.io/reference/api-keys).
52
+
Get an API key instantly via the command above, or get a full key at [opensea.io/settings/developer](https://opensea.io/settings/developer) for higher rate limits. See [API key docs](https://docs.opensea.io/reference/api-keys) for details.
52
53
53
54
## Quick Start
54
55
@@ -174,7 +175,7 @@ console.log(formatToon(data))
174
175
## Requirements
175
176
176
177
- Node.js >= 18.0.0
177
-
- OpenSea API key ([get one here](https://docs.opensea.io/reference/api-keys))
178
+
- OpenSea API key — get one instantly: `curl -s -X POST https://api.opensea.io/api/v2/auth/keys | jq -r '.api_key'` or from [opensea.io/settings/developer](https://opensea.io/settings/developer)
0 commit comments