# Furkot Trips **Provider:** Furkot Trips **Category:** auth **Base URL:** `https://trips.furkot.com/pub/api` **Auth:** oauth2 — `Authorization: Bearer ` **Rate Limit:** Not officially published **Free Tier:** Yes — available **Pricing:** Enterprise / contact sales (subscription) **Docs:** https://trips.furkot.com/pub/api ## Description Furkot provides Rest API to access user trip data. Using Furkot API an application can list user trips and display stops for a specific trip. Furkot API uses OAuth2 protocol to authorize applications to access data on behalf of users. ## Endpoints | Method | Endpoint | Description | |--------|----------|-------------| | GET | `https://trips.furkot.com/pub/api/trip` | list user's trips | | GET | `https://trips.furkot.com/pub/api/trip/{trip_id}/stop` | list stops for a trip identified by {trip_id} | ## Authentication OAuth 2.0 — obtain an access token via the authorization flow ``` Authorization: Bearer ``` ## Sample Request ```bash curl -X GET 'https://trips.furkot.com/pub/api/trip' \ -H 'Authorization: Bearer ' ``` ## Sample Response ```json {} ``` ## Pricing Details Free with Furkot account. Trip planning API for route optimization. --- *Source: [API Map](https://apimap.dev/apis/furkot-trips/) — CC BY 4.0*