Retrieve the public Vinted seller profile for a member. Pass a profile URL, a direct Vinted API user URL, or a numeric user ID.
Piloterr calls the internal Vinted API (/api/v2/users/{id}) with an auto-managed session cookie and returns the raw user object as Vinted exposes it (same schema as Search seller snapshots, but with the full profile payload).
Costs 1 credit per call.
Typical flow on Piloterr:
- Vinted Search to find listings
- Vinted Item for listing details (includes an optional seller snapshot)
- User Info (this endpoint) when you only have a member ID/URL or need the full profile
GET https://api.piloterr.com/v2/vinted/user/info?query=https://www.vinted.fr/member/272737992-fiorediottobre7
GET https://api.piloterr.com/v2/vinted/user/info?query=272737992
| Parameter |
Type |
Required |
Description |
query |
string |
yes |
Member profile URL, /api/v2/users/{id} URL, or numeric user ID |
| Field |
Description |
id |
Numeric Vinted user ID |
login |
Username |
path |
Member path slug (/member/{id}-{login}) |
profile_url / share_profile_url |
Canonical profile URLs on the Vinted domain |
about |
Seller bio when public |
photo |
Avatar with url, thumbnails[], full_size_url |
country_code / country_iso_code |
Seller country (IT, FR, …) |
country_title |
Localized country label |
city |
City when exposed |
currency |
Seller currency (EUR, …) |
item_count |
Active listings |
total_items_count |
Lifetime listed items |
given_item_count / taken_item_count |
Sold / bought counts |
followers_count / following_count |
Social counts |
feedback_count |
Total reviews |
positive_feedback_count / negative_feedback_count / neutral_feedback_count |
Review breakdown |
feedback_reputation |
Reputation score |
verification |
Email, Google, Facebook verification flags |
bundle_discount |
Multi-item discount tiers when enabled |
business |
Whether this is a business account |
last_loged_on / last_loged_on_ts |
Last activity (localized string + ISO timestamp) |
is_online / is_on_holiday |
Availability flags |
| Code |
Cause |
404 |
Empty query, ID not found in URL, or member does not exist |
403 |
Access blocked (anti-bot, session rejected) |
- Works on any
vinted.* domain present in the URL; a seller registered in Italy can still be fetched via vinted.fr.
- Session cookies are handled automatically (same as Search and Item).
- Unlike Vinted Item, this endpoint does not normalize keys, you get Vinted's native snake_case schema.
- Public profile data only; email and private contact fields are not exposed.
- Enrich resale leads with verified seller profiles and review stats
- Filter trusted sellers by verification status or feedback reputation
- Monitor key Vinted sellers and their listing activity for competitive research