Skip to main content
POST
/
api
/
personal
/
web-gallery
Create Web Gallery Endpoint
curl --request POST \
  --url https://api.example.com/api/personal/web-gallery \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "url": "<string>",
  "category": "other",
  "description": "<string>",
  "notes": "<string>",
  "screenshot_url": "<string>"
}
'
{
  "created_at": "<string>",
  "id": "<string>",
  "title": "<string>",
  "updated_at": "<string>",
  "url": "<string>",
  "category": "<string>",
  "description": "<string>",
  "notes": "<string>",
  "screenshot_url": "<string>"
}

Body

application/json
title
string
required
url
string
required
category
enum<string>
default:other
Available options:
portfolio,
studio,
agency,
saas,
editorial,
experimental,
other
description
string | null
notes
string | null
screenshot_url
string | null

Response

Successful Response

created_at
string
required
id
string
required
title
string
required
updated_at
string
required
url
string
required
category
string | null
description
string | null
notes
string | null
screenshot_url
string | null