POST
/
v1
/
links
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": {}
}'
{
  "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

x-api-key
string
header
required

Body

application/json

Response

200 - application/json

Successful operation

The response is of type object.