Memos
Memo Service

Batch Get Link Metadata

BatchGetLinkMetadata gets metadata for links.

POST
/api/v1/memos/-/linkMetadata:batchGet

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/api/v1/memos/-/linkMetadata:batchGet" \  -H "Content-Type: application/json" \  -d '{    "urls": [      "string"    ]  }'
{
  "linkMetadata": [
    {
      "url": "string",
      "title": "string",
      "description": "string",
      "image": "string"
    }
  ]
}
{
  "code": 0,
  "message": "string",
  "details": [
    {
      "@type": "string"
    }
  ]
}

On this page

No Headings