Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mind-e.co/docs/llms.txt

Use this file to discover all available pages before exploring further.

Endpoint

PATCH /web-sources/{id}

Authentication

Required.

Path parameters

id
string
required
The web source ID.

Request body

discoveredUrls
array
required
Updated list of discovered URLs. Each item must have a url field.

Response

success
boolean
webSource
object
The updated web source object.

Example

curl -X PATCH https://api.mind-e.co/web-sources/ws-id-here \
  -H "Authorization: Bearer sk_live_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "discoveredUrls": [
      { "url": "https://example.com/page-1" },
      { "url": "https://example.com/page-2" }
    ]
  }'