API Reference
Analyze Links
POST
/
v1
/
links
Copy
curl --request POST \
--url https://searchlysis.com/api/v1/links \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"metadata": {},
"link": [
"<string>"
],
"prompt": "<string>",
"temperature": 0.8,
"responseFormat": {}
}'
Copy
{
"usageId": "<string>",
"metadata": {},
"costCredits": 123,
"results": [
{
"analysisId": "<string>",
"createdAt": "<string>",
"updatedAt": "<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": {}
}
]
}
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/links \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"metadata": {},
"link": [
"<string>"
],
"prompt": "<string>",
"temperature": 0.8,
"responseFormat": {}
}'
Copy
{
"usageId": "<string>",
"metadata": {},
"costCredits": 123,
"results": [
{
"analysisId": "<string>",
"createdAt": "<string>",
"updatedAt": "<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": {}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.