API Reference
Update Analysis
POST
/
v1
/
analyses
Copy
curl --request POST \
--url https://searchlysis.com/api/v1/analyses \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"analysisId": "<string>",
"textContent": "<string>",
"jsonContent": {},
"metadata": {}
}'
Copy
{
"createdAt": "<string>",
"updatedAt": "<string>",
"analysisId": "<string>",
"analysis": {
"title": "<string>",
"url": "<string>",
"publishedDate": "<string>",
"author": "<string>",
"score": 123,
"id": "<string>",
"image": "<string>",
"favicon": "<string>",
"extras": {
"imageLinks": [
"<string>"
]
},
"text": "<string>"
},
"textContent": "<string>",
"jsonContent": {},
"metadata": {}
}
Authorizations
Body
application/json
Response
200 - application/json
Successful operation
The response is of type object
.
Copy
curl --request POST \
--url https://searchlysis.com/api/v1/analyses \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"analysisId": "<string>",
"textContent": "<string>",
"jsonContent": {},
"metadata": {}
}'
Copy
{
"createdAt": "<string>",
"updatedAt": "<string>",
"analysisId": "<string>",
"analysis": {
"title": "<string>",
"url": "<string>",
"publishedDate": "<string>",
"author": "<string>",
"score": 123,
"id": "<string>",
"image": "<string>",
"favicon": "<string>",
"extras": {
"imageLinks": [
"<string>"
]
},
"text": "<string>"
},
"textContent": "<string>",
"jsonContent": {},
"metadata": {}
}
Assistant
Responses are generated using AI and may contain mistakes.