Get Tip Details

Public Beta Feature

This documentation covers a feature currently in Public Beta. Access is available to anyone interested in building personalized experiences for their end-users.

This feature is subject to the Personalization API (Self-Service) Public Beta End user License Agreement.

API Parameters

Parameter Type Required Description
tip_id string required The ID of tip to retrieve
v string required The API version date as documented here; e.g. 20231010
accept string enum Defaults to application/json - Generated from available response content types: application/json, text/plain

Response Codes

# 200
object
Information about a specific tip.

meta
object
Response metadata for a successful request to retrieve a specific tip.

code
integer
Defaults to 0
Status code for the response meta data of the retrieved tip.

requestId
string
Unique identifier for the API request.

response
object
Tip response object for a specific tip ID.

tip
object
Response object containing the retrieved tip information.

# 400

Example Request

curl --request GET \
     --url https://api.foursquare.com/v2/tips/tip_id \
     --header 'accept: application/json'

Example Response

{
  "meta": {
    "code": 200,
    "requestId": "59cea5346329fb6b767fab2a4f7"
  },
  "response": {
    "tip": {
      "id": "53bc46b7498e355aed38c696",
      "createdAt": 1404847799,
      "text": "Rooftop boozy brunch in Lower East Side. Can't drink all day unless you start in the morning!",
      "type": "user",
      "canonicalUrl": "https://foursquare.com/item/53bc46b7498e355aed38c696",
      "lang": "en",
      "saves": {
        "count": 1,
        "groups": [],
        "summary": "1 Save"
      },
      "venue": {
        "id": "4cbcafab035d236aebebe64e",
        "name": "Hotel Chantelle"
      }
    }
  }
}