Remove Pin from Pinboard
Remove a pin from a pinboard (does not delete the pin).
Endpoint
DELETE /v1/pinboards/:boardId/pins/:pinIdAuthentication
Requires API key with pinboards:write scope.
Example
Client-JS
import { PindownClient } from '@pindownai/client-js'
const client = new PindownClient({
apiKey: process.env.PINDOWN_API_KEY
})
// Remove pin from pinboard
await client.pinboards.removePin('pb-abc123', 'p-xyz789')
console.log('Pin removed from pinboard')Response
{
"success": true
}Note: This only removes the pin from the pinboard. The pin itself is not deleted.
Rate Limiting
This endpoint costs 2 tokens per request.