# TripAdvisor Autocomplete API (https://www.socialcrawl.dev/platforms/tripadvisor/autocomplete) > Type-ahead lookup for TripAdvisor destinations, hotels, restaurants, and attractions. Returns a unified PlaceList with the resolved location id, name, locality subtitle (e.g. 'Ile-de-France, France'), coordinates, thumbnail, and the TripAdvisor URL to chain into /v1/tripadvisor/place or /v1/tripadvisor/reviews. Best for turning a name a user typed into a concrete place. Note this lane carries NO star rating and NO review count - use /v1/tripadvisor/search when you need those on every result. TL;DR: `GET /v1/tripadvisor/autocomplete` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `q` | yes | Destination, place, hotel, restaurant, or attraction name, e.g. 'Paris'. | | `depth` | no | Number of suggestions to return (default 10, max 50). | | `language` | no | Optional locale, e.g. 'en-US'. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/tripadvisor/autocomplete?q=Paris" \ -H "x-api-key: sc_YOUR_API_KEY" ``` See the full TripAdvisor API: https://www.socialcrawl.dev/platforms/tripadvisor ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing