Skip to main content
GET
/
snippets
/
{id}
Get snippet
curl --request GET \
  --url https://productlane.com/api/v2/snippets/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "title": "<string>",
  "html": "<string>",
  "folder_id": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

Successful response

id
string
required
title
string
required
html
string
required
folder_id
string | null
required
created_at
string
required
updated_at
string
required