Get or create a link for a product you have access to.

Method: POST

Body (JSON):

Response:

{
  "asin": "string",
  "id": "string",
  "sourceId": "string",
  "sourceSubId": "string",
  "sourceName": "string",
  "url": "string",
  "active": true,
  "type": "product",
  "marketplace": "amazon.com"
}

Errors:

Example:

const API_KEY = "LEVANTA_API_KEY";
const ENDPOINT = "<https://app.levanta.io/api/creator/v1/links>";

const res = await fetch(ENDPOINT, {
	method: "POST",
	headers: {
		Authorization: `Bearer ${API_KEY}`,
    "Content-Type": "application/json"
	},
	body: JSON.stringify({
        asin: "B0B7CTHJ2V",
        source_id: "instagram",
				source_sub_id: "post_22",
				source_name: "Instagram Affiliate Post #22"
    })
});

const link = await res.json();
console.log(link);