POST
/
v1
/
api
/
sources
/
web-upload
curl --request POST \
  --url https://app-api.starkai.io/v1/api/sources/web-upload \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '{
  "web_url": "https://example.com/article"
}'
{
  "status": true,
  "message": "Web URL uploaded successfully",
  "data": {
    "source_id": "web_123456789"
  }
}
Check our Documention Page to create a new API Key

Authorizations

X-Api-Key
string
header
required

API Key for authentication

Body

application/json

Web URL to upload as a source

The body is of type object.

Response

200
application/json

Web URL uploaded successfully

The response is of type object.