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

Delete Page

Delete a page permanently. Pins in the page are not deleted, only removed from the page.

Endpoint

DELETE /v1/pages/:pageId

Authentication

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

Authorization: Bearer pk_live_your_api_key

Path Parameters

ParameterTypeRequiredDescription
pageIdstringYesPage ID (e.g., pg-abc123)

Example

import { PindownClient } from '@pindownai/client-js' const client = new PindownClient({ apiKey: process.env.PINDOWN_API_KEY }) await client.pages.delete('pg-abc123') console.log('Page deleted')

Response

{ "success": true, "message": "Page deleted successfully" }

Notes

  • Pins are not deleted when you delete a page
  • Pins are only removed from the page’s pin list
  • You can still access pins individually or add them to other pages

Next Steps