Get or create a link for a product you have access to.
Method: POST
Body (JSON):
- “asin”
- ASIN identifying the Amazon product to create the link for
- “marketplace”
- “source_id”
- An ID that identifies where the created link will be used
- Examples: “instagram”, “tiktok”, “blog”, etc.
- If omitted, “default” will be used as the source ID
- Allowed characters: [a-zA-Z0-9-_@./ ]
- “source_sub_id”:
- An ID to further identify the link underneath the source_id namespace
- Examples: “user1”, ‘https://www.source_id/@user”, “blogpost_23”
- If omitted, “” will be used as sub_source_id, can not be filtered on
- Allowed characters: [a-zA-Z0-9-_@./ ]
- “source_name”
- Display name for the source within Levanta
- Optional
- “associates_tag”
- Value to override associates tag with
- If omitted default account associates tag is used
- if no default account associates tag is used, set to “maas”
- “marketplace”
Response:
{
"asin": "string",
"id": "string",
"sourceId": "string",
"sourceSubId": "string",
"sourceName": "string",
"url": "string",
"active": true,
"type": "product",
"marketplace": "amazon.com"
}
Errors:
- 400: Bad Request
- Parameters incorrectly formatted or missing permissions to create a tag for the requested ASIN
- 401: Unauthorized
- Invalid or omitted API Key
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);