Skip to Content
Pindown.ai is in early alpha - features may change
Pages APIRemove Pin from Page

Remove Pin from Page

Remove a pin from a page. The pin is not deleted, only removed from the page.

Endpoint

DELETE /v1/pages/:pageId/pins/:pinId

Authentication

Requires API key with pages:write scope. You must be the page owner or an editor.

Authorization: Bearer pk_live_your_api_key

Path Parameters

ParameterTypeRequiredDescription
pageIdstringYesPage ID (e.g., pg-abc123)
pinIdstringYesPin ID to remove (e.g., p-xyz789)

Example

import { PindownClient } from '@pindownai/client-js' const client = new PindownClient({ apiKey: process.env.PINDOWN_API_KEY }) await client.pages.removePin('pg-abc123', 'p-xyz789') console.log('Pin removed from page')

Response

{ "success": true, "message": "Pin removed from page successfully" }

Notes

  • The pin is not deleted, only removed from the page
  • The pin can still be accessed individually or added to other pages
  • Removing a pin does not affect other pages that contain the same pin

Next Steps