felo-ai 0.2.10 → 0.2.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -109,31 +109,31 @@ The `x` command uses parameter combinations to infer intent — no subcommands n
109
109
 
110
110
  ```bash
111
111
  # Search tweets
112
- curl -X POST "https://openapi.felo.ai/x/tweet/search" \
112
+ curl -X POST "https://openapi.felo.ai/v2/x/tweet/search" \
113
113
  -H "Authorization: Bearer $FELO_API_KEY" \
114
114
  -H "Content-Type: application/json" \
115
115
  -d '{"query": "AI news", "limit": 20}'
116
116
 
117
117
  # Search users
118
- curl -X POST "https://openapi.felo.ai/x/user/search" \
118
+ curl -X POST "https://openapi.felo.ai/v2/x/user/search" \
119
119
  -H "Authorization: Bearer $FELO_API_KEY" \
120
120
  -H "Content-Type: application/json" \
121
121
  -d '{"query": "artificial intelligence"}'
122
122
 
123
123
  # Get user info
124
- curl -X POST "https://openapi.felo.ai/x/user/info" \
124
+ curl -X POST "https://openapi.felo.ai/v2/x/user/info" \
125
125
  -H "Authorization: Bearer $FELO_API_KEY" \
126
126
  -H "Content-Type: application/json" \
127
127
  -d '{"usernames": ["elonmusk", "OpenAI"]}'
128
128
 
129
129
  # Get user tweets
130
- curl -X POST "https://openapi.felo.ai/x/user/tweets" \
130
+ curl -X POST "https://openapi.felo.ai/v2/x/user/tweets" \
131
131
  -H "Authorization: Bearer $FELO_API_KEY" \
132
132
  -H "Content-Type: application/json" \
133
133
  -d '{"username": "elonmusk", "limit": 20}'
134
134
 
135
135
  # Get tweet replies
136
- curl -X POST "https://openapi.felo.ai/x/tweet/replies" \
136
+ curl -X POST "https://openapi.felo.ai/v2/x/tweet/replies" \
137
137
  -H "Authorization: Bearer $FELO_API_KEY" \
138
138
  -H "Content-Type: application/json" \
139
139
  -d '{"tweet_ids": ["1234567890"]}'
@@ -185,11 +185,11 @@ If `FELO_API_KEY` is not set, display setup instructions and stop.
185
185
  - **Base URL**: `https://openapi.felo.ai`. Override with `FELO_API_BASE` env if needed.
186
186
  - **Auth**: `Authorization: Bearer YOUR_API_KEY`
187
187
  - **Endpoints**:
188
- - `POST /x/user/info` — Batch get user profiles
189
- - `POST /x/user/search` — Search users
190
- - `POST /x/user/tweets` — Get user tweets
191
- - `POST /x/tweet/search` — Search tweets
192
- - `POST /x/tweet/replies` — Get tweet replies
188
+ - `POST /v2/x/user/info` — Batch get user profiles
189
+ - `POST /v2/x/user/search` — Search users
190
+ - `POST /v2/x/user/tweets` — Get user tweets
191
+ - `POST /v2/x/tweet/search` — Search tweets
192
+ - `POST /v2/x/tweet/replies` — Get tweet replies
193
193
 
194
194
  ## Important Notes
195
195
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "felo-ai",
3
- "version": "0.2.10",
3
+ "version": "0.2.11",
4
4
  "description": "Felo AI CLI - real-time search, PPT generation, web fetch, and YouTube subtitles from the terminal",
5
5
  "type": "module",
6
6
  "main": "src/cli.js",