> ## Documentation Index
> Fetch the complete documentation index at: https://docs.seminode.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Listings

> Deletes one or more listings created by the calling user's company. If no node URLs are specified, all write-enabled nodes for the authenticated company are targeted.



## OpenAPI

````yaml https://api.seminode.com/v1/docs/public post /listings/delete
openapi: 3.0.1
info:
  contact: {}
  description: Standard HTTP Basic authentication (username & password).
  title: Seminode API
  version: '1.0'
servers:
  - url: https://api.seminode.com/v1
security: []
tags: []
paths:
  /listings/delete:
    post:
      tags:
        - Listings
      summary: Delete Listings
      description: >-
        Deletes one or more listings created by the calling user's company. If
        no node URLs are specified, all write-enabled nodes for the
        authenticated company are targeted.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/listings.deleteListingsRequest'
        description: Listing IDs and optional node URLs
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/utils.DetailResponse'
          description: Deletion event successfully sent
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/utils.ErrorResponse'
          description: Malformed request body
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/utils.ErrorResponse'
          description: Internal error retrieving nodes or keys
        default:
          description: unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/utils.ErrorResponse'
      security:
        - BearerAuth: []
        - LoginAuth: []
components:
  schemas:
    listings.deleteListingsRequest:
      properties:
        ids:
          items:
            type: string
          type: array
        urls:
          items:
            type: string
          type: array
      type: object
    utils.DetailResponse:
      properties:
        detail:
          type: string
      type: object
    utils.ErrorResponse:
      properties:
        error:
          type: string
      type: object
  securitySchemes:
    BearerAuth:
      description: 'Format: "Bearer &lt;access_token&gt;"'
      in: header
      name: Authorization
      type: apiKey
    LoginAuth:
      scheme: basic
      type: http

````