{"info":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","description":"<html><head></head><body><h2 id=\"getting-started\"><strong>Getting started</strong></h2>\n<ol>\n<li><p>Get your AI Library Key from the <a href=\"https://ailibrary.ai/platform\">AI Library Dashboard</a></p>\n</li>\n<li><p>Update your API key in the Environment. Include it in Current value to avoid exposing it.</p>\n</li>\n</ol>\n<h2 id=\"understanding-ai-agents\">Understanding AI Agents</h2>\n<p>AI Library Platform APIs are organised into entities.</p>\n<ol>\n<li><p><strong>Agent</strong> - The highest level is an agent. Unique identifier of an agent is <code>namespace</code> A conversation with an agent can be triggered as a text chat or a voice chat. Agents require instructions (eg. you are a sales agent). By default they pick on the LLM's knowledge.</p>\n</li>\n<li><p><strong>Knowledge Base</strong> - If you want to train your agent with custom data, you need to create a knowledge base. You can feed knowledge base from various sources - documents you upload, files on the internet, your database.</p>\n</li>\n<li><p><strong>Forms</strong> - Agents by default can converse on general topics, on knowledge base you specify and follow instructions you provide. However, if you want them to collect structured information, you can use forms. This opens a plethora of new opportunities. You can trigger follow up tasks based on responses you get.</p>\n</li>\n<li><p><strong>Utilities</strong> - Sometimes your agents need special skills, utilities can help you build <em>super agents</em> 💪. You can enable your agent to search the web or news, scrape a web page or access data otherwise unavailable by parsing a PDF or handwritten text.</p>\n</li>\n<li><p><strong>Integrations</strong> - If you want to connect your agent to a 3rd party application, you can use AI Library native integrations. There are bidirectional integrations with CRMs, Telephony Providers, Payment Gateways, Messaging Platforms and more.</p>\n</li>\n</ol>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Entity</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Agent</strong></td>\n<td>Create and Manage  <br>Administrators  <br>Conversation Logs  <br>Triggers - Chat or Voice  <br>Contacts</td>\n</tr>\n<tr>\n<td><strong>Knowledge Base</strong></td>\n<td>Create and Manage  <br>Add Sources  <br>Administrators</td>\n</tr>\n<tr>\n<td><strong>Forms</strong></td>\n<td>Create and Manage  <br>Administrators</td>\n</tr>\n<tr>\n<td><strong>Utilities</strong></td>\n<td>Web Search  <br>News Search  <br>Web Scraper  <br>Document Parser</td>\n</tr>\n<tr>\n<td><strong>Integrations</strong></td>\n<td>Kylas CRM  <br>Zoho CRM  <br>Facebook Lead Ads  <br>Slack  <br>Whatsapp  <br>Sendgrid</td>\n</tr>\n</tbody>\n</table>\n</div><p>Welcome aboard! Let's create amazing AI applications together! ✨</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"32852595","collectionId":"fd87cb70-2941-4308-8fd9-6983161d8225","publishedId":"2sB34kEzEi","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-07-21T06:41:03.000Z"},"item":[{"name":"Agents","item":[{"name":"Create Agent","event":[{"listen":"test","script":{"id":"0db5f537-bd1e-4506-956d-9909fab24d17","exec":["// Update the collection variable 'namespace' with the value of the 'namespace' key from the response","pm.test(\"Update the collection variable 'namespace' with the value from the response\", function () {","    var jsonData = pm.response.json();","    pm.collectionVariables.set(\"namespace\", jsonData.namespace);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"0d4ce95a-438a-4011-83ff-29683e2ff748","request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"instructions\": \"You are a a sales agent working for a company.\",\n    // \"deep_search\": false,\n    \"knowledge_search\": true,\n    // \"search_mkt\": \"in\",\n    // \"search_limit\": 30,\n    \"form_filling\": true\n    // \"form_schema\": {\n    //     \"queries\": {\n    //         \"type\": \"array\",\n    //         \"minItems\": 1,\n    //         \"maxItems\": 4,\n    //         \"items\": {\n    //             \"type\": \"object\",\n    //             \"properties\": {\n    //                 \"action\": {\n    //                     \"type\": \"string\",\n    //                     \"enum\": [\n    //                         \"search\",\n    //                         \"filter\"\n    //                     ]\n    //                 },\n    //                 \"target_type\": {\n    //                     \"type\": \"string\",\n    //                     \"enum\": [\n    //                         \"substation\",\n    //                         \"data_center\",\n    //                         \"power_plant\",\n    //                         \"address\",\n    //                         \"utility\",\n    //                         \"state\",\n    //                         \"county\",\n    //                         \"zip_code\"\n    //                     ]\n    //                 },\n    //                 \"target_attribute\": {\n    //                     \"type\": \"string\"\n    //                 }\n    //             },\n    //             \"required\": [\n    //                 \"action\",\n    //                 \"target_type\",\n    //                 \"target_attribute\"\n    //             ],\n    //             \"additionalProperties\": false\n    //         }\n    //     }\n    // }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent/create","description":"<p>Creates an agent. You can simply create an agent with the type of agent you want to create and then update the agent with more details.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","create"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d4ce95a-438a-4011-83ff-29683e2ff748"},{"name":"Agent Details","event":[{"listen":"test","script":{"id":"0db5f537-bd1e-4506-956d-9909fab24d17","exec":[""],"type":"text/javascript","packages":{}}}],"id":"6f3ca021-c921-4577-b70d-dc6632fb9f4d","request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/agent/","description":"<p>Return information about an agent, if found.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent",""],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6f3ca021-c921-4577-b70d-dc6632fb9f4d"},{"name":"Update Agent","event":[{"listen":"test","script":{"id":"0db5f537-bd1e-4506-956d-9909fab24d17","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"c1cad641-64d7-487b-9823-8fd8b81f5cd2","request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"coverimage\": \"https://www.ailibrary.ai/ailibrary.svg\",\n  \"description\": \"AI financial analyst providing concise answers strictly based on user-supplied financial documents; no extra details or explanations.\",\n  \"intromessage\": \"Hello! How can I assist with your financial queries?\",\n  \"title\": \"Agent Title\",\n  \"content_instructions\": \"\",\n  \"deep_search\": true,\n  \"deepread_search_results\": false,\n  \"include_domains\": [],\n  \"instructions\": \"You are a query parser for a natural language search system.  Rules: 1. action can be only 'search' or 'filter' 2. Search must ALWAYS appear first. 3. Filter must ALWAYS appear after Search (if present). target_attribute must contain the value to search or filter by. Search Target_Type must be one of: - Substations - Data Centers - Power Plants - Address  Filter target_type must be one of: - Utilities - States - Counties - Zip Codes  Return ONLY valid JSON that matches the schema. \"\n  \"search_limit\": 0,\n  \"search_mkt\": \"in\",\n\"form_id\": \"language-t_28735\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent/","description":"<p>Gets information about the authenticated user.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent",""],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c1cad641-64d7-487b-9823-8fd8b81f5cd2"},{"name":"Delete Agent","event":[{"listen":"test","script":{"id":"0db5f537-bd1e-4506-956d-9909fab24d17","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"c789b5f9-239b-4d4e-b16d-f164d0c4e491","request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"delete_connected_resources\": \"true\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent/","description":"<p>Deletes an agent.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent",""],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c789b5f9-239b-4d4e-b16d-f164d0c4e491"},{"name":"List Agents","event":[{"listen":"test","script":{"id":"0db5f537-bd1e-4506-956d-9909fab24d17","exec":[""],"type":"text/javascript","packages":{}}}],"id":"03225240-3da7-4920-a5ee-e2ce0d85fe68","request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/agent/?limit=2&page=1","description":"<p>List agents.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent",""],"host":["{{baseUrl}}"],"query":[{"key":"limit","value":"2"},{"key":"page","value":"1"}],"variable":[]}},"response":[],"_postman_id":"03225240-3da7-4920-a5ee-e2ce0d85fe68"}],"id":"1d69f481-d1aa-42ce-b44b-6b91e750f14e","description":"<p>Create, manage and invoke conversation with agents.</p>\n<p>Agents have three main components</p>\n<ol>\n<li><p><strong>Instruction</strong> - This is very important as it tells the agent what it is supposed to do. For example, you can tell the agent that it is a sales agent and it should help the user with their purchase.</p>\n</li>\n<li><p><strong>Knowledge Base</strong> - Agents can be trained on a knowledge base. This is a collection of data that the agent can use to respond to queries.</p>\n</li>\n<li><p><strong>Forms</strong> - If you want to collect structured information from the user, you can use forms.</p>\n</li>\n</ol>\n","_postman_id":"1d69f481-d1aa-42ce-b44b-6b91e750f14e","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"Triggers","item":[{"name":"Conversations","item":[{"name":"Outbound Queue","item":[{"name":"Add to Queue","id":"500a03fa-d844-4ab5-bb27-926b5839aab2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"contacts\": [\n    {\n      // \"id\": \"957\",\n      \"contact_id\": \"+918655884161\",\n      \"context\": \"hello\"\n    },\n    {\n      // \"id\": \"1001\",\n      \"contact_id\": \"+919818991548\",\n      \"context\": \"hello 2\"\n    },\n    {\n      // \"id\": 958,\n      \"contact_id\": \"+919920030905\",\n      \"context\": \"hello 3\"\n    }\n    // ... more contacts\n  ],\n  \"channel\": \"phone\",\n  \"service\": \"exotel\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//queue","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","queue"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"500a03fa-d844-4ab5-bb27-926b5839aab2"},{"name":"Remove from Queue","id":"aacd39ed-03be-4607-8f3c-c639874a608b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n  \"contacts\": [\n    {\n      \"id\": \"957\",\n      \"contact_id\": \"+918655884161\"\n    },\n    {\n      \"id\": \"1001\",\n      \"contact_id\": \"+919818991548\"\n    },\n    {\n      \"id\": 958,\n      \"contact_id\": \"+919920030905\"\n    }\n    // ... more contacts\n  ],\n  \"channel\": \"phone\",\n  \"service\": \"exotel\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//queue","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","queue"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"aacd39ed-03be-4607-8f3c-c639874a608b"},{"name":"Execute Queue","id":"5ad080d3-9bb1-49f8-b0f8-ff48ff435c7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"{{baseUrl}}/v1/agent//queue","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","queue"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5ad080d3-9bb1-49f8-b0f8-ff48ff435c7a"},{"name":"Execute All Queue","id":"2ff1afe5-7753-4df7-a02f-951448832fdb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"{{baseUrl}}/v1/queue","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","queue"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2ff1afe5-7753-4df7-a02f-951448832fdb"},{"name":"Get Queue","id":"98aaef37-2dd2-448f-9b95-8f67a5aaf641","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/agent//queue","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","queue"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"98aaef37-2dd2-448f-9b95-8f67a5aaf641"}],"id":"c12b5dff-f27e-4a67-9f2d-d4b4d0592b49","_postman_id":"c12b5dff-f27e-4a67-9f2d-d4b4d0592b49","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"Chat (Streaming)","event":[{"listen":"test","script":{"id":"c3984f3b-885b-448d-a979-b4ea23b83836","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"1c315dcc-a6ef-4a7c-9ecd-2d40cb08a8de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"session_id\": \"7cd755b2-769a-4911-8c1b-d33c9f98d8d2\",\n    \"fetch_memory\": true, //mandatory if adding session_id\n    // \"deep_search\": false, //for enabling web search. options: true, false\n    // \"search_limit\": 5, // number of days from today, works only if using deep_search\n    // \"tools\": [\"image_generation\"],\n    // \"knowledge_search\": true, // options: true, false. works only if knowledge base available\n    \"messages\": [\n        {\n            \"role\": \"user\",\n            \"content\": \"hi\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//chat","description":"<p>Streams responses</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","chat"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1c315dcc-a6ef-4a7c-9ecd-2d40cb08a8de"},{"name":"Chat (Non streaming)","id":"8761e9a1-e4c8-49e3-9c7c-f38a71619433","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"session_id\": \"postman-10\",\n    \"fetch_memory\": true,\n    \"messages\": [\n        {\n            \"role\": \"user\",\n            \"content\": \"hi, i am looking to open a franchise\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//chat?streaming=False","description":"<p>Returns responses without streaming</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","chat"],"host":["{{baseUrl}}"],"query":[{"key":"streaming","value":"False"}],"variable":[]}},"response":[],"_postman_id":"8761e9a1-e4c8-49e3-9c7c-f38a71619433"},{"name":"Call","id":"e8737b91-a342-4b60-9144-fe08e12b4ccd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Firstname Lastname\",\n    \"phone\": \"919878994532\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//call","description":"<p>Calls user on phone number.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","call"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e8737b91-a342-4b60-9144-fe08e12b4ccd"},{"name":"WhatsApp (Template)","id":"77f25a06-088b-4f88-98b0-ea7b420dc42b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"template\": \"whatsapp_template\", // your approved WhatsApp template id\n    \"customer_name\": \"Abhimanyu Sharma\", \n    \"phone_number\": \"+9188XX31XX73\",\n    \"context\": \"User has requested to be contacted\" // optional - add context about the customer\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//whatsapp","description":"<p>Send a WhatsApp Template Message to initiate a conversation with a user.  </p>\n<p>The template must be approved by WhatsApp before you can send a message.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","whatsapp"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"77f25a06-088b-4f88-98b0-ea7b420dc42b"}],"id":"cb01f141-2ff7-4834-a4e0-0df67f9dfd18","_postman_id":"cb01f141-2ff7-4834-a4e0-0df67f9dfd18","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"Content Generation","item":[{"name":"Generate Content","id":"5a2ba7f1-b546-429c-9c01-f99f4a5e8588","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"messages\": [\n        {\n            \"role\": \"user\",\n            \"content\": \"summarise this document and give me top 10 things I can mentioned in a LinkedIn Post\"\n        }\n    ],\n    \"files\": [\"https://web-assets.bcg.com/dc/c5/1bcbfdc0405c85fb14972a57c20a/the-emerging-agentic-enterprise-how-leaders-must-navigate-a-new-age-of-ai.pdf\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//content","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","content"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5a2ba7f1-b546-429c-9c01-f99f4a5e8588"},{"name":"Translate Content","id":"0431b5a9-1748-4196-93cd-2ec49e40e015","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"sid\": \"Uncovering-the-AI-Bubble-Hype-vs-Reality-ef293b59d00341d7b58e94ba2f130e0a\",\n    \"target_language\": \"hi-IN\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//content/translate","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","content","translate"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0431b5a9-1748-4196-93cd-2ec49e40e015"},{"name":"Translate Content Copy","id":"280e2e6c-83f0-4a99-920b-e411cc283b79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"namespace\": \"ailibrary-aiden\",\n    \"sid\": \"AI-Revolutionizes-Sales-with-2025-Breakthroughs-cab38114fc644a8db2d67af35104c0c1\",\n    \"api_key\": \"d4qgdcs2lgUBvwWDFjC6NeOIrLS87cpoDHlwPL5a\",\n    \"target_language\": \"bn-IN\"\n}","options":{"raw":{"language":"json"}}},"url":"https://v0rn1huk2a.execute-api.us-west-2.amazonaws.com/v1/content/translate","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","content","translate"],"host":["v0rn1huk2a","execute-api","us-west-2","amazonaws","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"280e2e6c-83f0-4a99-920b-e411cc283b79"},{"name":"Generate Document","id":"f591956f-bb65-4ce2-a7a3-f0ea46b89262","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"session_id\": \"7cd755b2-769a-4911-8c1b-d33c9f98d8d9\",\n    \"deep_search\": true, //options: true, false\n    \"search_limit\": 365, // number of days from today,\n    \"knowledge_search\": true // options: true, false. works only if knowledge base available\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//batch","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","batch"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f591956f-bb65-4ce2-a7a3-f0ea46b89262"}],"id":"18f3c429-9755-4518-9ae6-9209b5f3bcd0","_postman_id":"18f3c429-9755-4518-9ae6-9209b5f3bcd0","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"Analyze Data","item":[{"name":"Download File","id":"874a24ad-880c-4fd0-97a6-c0406b9911b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"container_id\": \"cntr_68dcc85c6b7081918c9f58a0717b26dc0d7dd6b0f242d518\",\n  \"file_id\": \"cfile_68dcc87bdccc8191854dd9b2017f831b\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/downloadopenaifile","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","downloadopenaifile"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"874a24ad-880c-4fd0-97a6-c0406b9911b0"},{"name":"Analysis","id":"02acd987-d7a1-45f7-8e7f-879f32b7252e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/analyze","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","analyze"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"02acd987-d7a1-45f7-8e7f-879f32b7252e"}],"id":"02134bd4-bb7a-43d4-b51b-f5132afbdd99","_postman_id":"02134bd4-bb7a-43d4-b51b-f5132afbdd99","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"Batch Extrator","item":[{"name":"Extract","id":"db68485b-683b-4c1f-a1cb-b9e04ccce36c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"sources\": [\"YugDengre2506.pdf\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//extract","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","extract"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"db68485b-683b-4c1f-a1cb-b9e04ccce36c"},{"name":"Email Extract","id":"828dadb5-a8a6-4e4d-b224-03bf6d956a2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"content\": \"Test Email\",\n    \"files\": [\"https://ailib-public.s3.us-west-2.amazonaws.com/attachments/20251122082442_CAM+Inv+Windsor+HIlls+D2-32+Oct'25-Dec'25.pdf\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//extract/email","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","extract","email"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"828dadb5-a8a6-4e4d-b224-03bf6d956a2c"}],"id":"fe0e208f-4a64-4ecc-aa2b-d47c55dcfeec","_postman_id":"fe0e208f-4a64-4ecc-aa2b-d47c55dcfeec","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"Dubbing","item":[{"name":"Create a Dub","id":"10f33fb3-f3d7-48c7-8f60-2c25e9f1b5a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"job_type\": \"translate_images\",\n    // \"webhook_url\": \"\",\n    \"s3_url\": \"s3://dekoder-translator-media/videos/Dr_Roy_Snippets_KERALA_FINAL-fs.mp4\",\n    \"timestamps\": [\n        {\n            \"in\": \"00:50\",\n            \"out\": \"01:28\"\n        },\n        {\n            \"in\": \"01:40\",\n            \"out\": \"02:03\"\n        },\n        {\n            \"in\": \"02:16\",\n            \"out\": \"03:23\"\n        },\n        {\n            \"in\": \"03:25\",\n            \"out\": \"03:53\"\n        },\n        {\n            \"in\": \"03:58\",\n            \"out\": \"04:21\"\n        },\n        {\n            \"in\": \"04:27\",\n            \"out\": \"05:08\"\n        },\n        {\n            \"in\": \"05:09\",\n            \"out\": \"05:42\"\n        },\n        {\n            \"in\": \"06:03\",\n            \"out\": \"07:02\"\n        },\n        {\n            \"in\": \"07:19\",\n            \"out\": \"08:11\"\n        },\n        {\n            \"in\": \"08:32\",\n            \"out\": \"09:20\"\n        },\n        {\n            \"in\": \"09:51\",\n            \"out\": \"10:26\"\n        },\n        {\n            \"in\": \"11:33\",\n            \"out\": \"12:47\"\n        }\n    ],\n    \"languages\": [\n        \"hi-IN\"\n        // \"kn-IN\"\n        // \"ta-IN\"\n        // \"te-IN\",\n        // \"ml-IN\",\n        // \"bn-IN\",\n        // \"mr-IN\",\n        // \"pa-IN\",\n        // \"gu-IN\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//dubs","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","dubs"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"10f33fb3-f3d7-48c7-8f60-2c25e9f1b5a3"},{"name":"List Dubs","id":"137aca10-bb00-4c04-9df1-725c7e19e1b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/agent//dubs","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","dubs"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"137aca10-bb00-4c04-9df1-725c7e19e1b4"},{"name":"Get a Dub","id":"698bf6dc-1f8b-4559-9754-07289238dcc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/agent//dubs/:job","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","dubs",":job"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":"Women_Voters_Broke_Caste_Lines_and_Backed_Nitish_Kumar_Alok_Vats_to_Nidhi_Kulpati_720P.mp4","key":"job"}]}},"response":[],"_postman_id":"698bf6dc-1f8b-4559-9754-07289238dcc8"}],"id":"1acd0768-8018-40b7-b611-f6110c62f1fe","_postman_id":"1acd0768-8018-40b7-b611-f6110c62f1fe","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"JSON Response","id":"7d96d2f3-49d7-41fe-9448-dc6b9f4f91bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"session_id\": \"niusjndckj23\",\n    \"response_format\": \"json\", //requires a form attached to the agent\n    \"messages\": [\n        {\n            \"role\": \"user\",\n            \"content\": \"Find Google data centers in Texas served by CPS\"\n        }\n    ],\n    \"files\": [\n        {\n            \"url\": \"https://ailib-public.s3.us-west-2.amazonaws.com/corbett/arani@ailibrary.ai/YugDengre2506.pdf\",\n            \"id\": 16106,\n            \"bytes\": 213319,\n            \"name\": \"C_fakepath_WhatsApp Image 2025-04-16 at 8.47.02 AM _1_.jpeg\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//chat","description":"<p>Returns JSON response. Requires a form attached to the agent.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","chat"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7d96d2f3-49d7-41fe-9448-dc6b9f4f91bc"}],"id":"a304c9af-3f92-429e-89c1-a4935314f8fe","_postman_id":"a304c9af-3f92-429e-89c1-a4935314f8fe","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"Memory","item":[{"name":"Conversations","item":[{"name":"Get Logs","id":"8ed97924-d35c-439c-8275-856520e72214","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/agent//logs?page=1&limit=100","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","logs"],"host":["{{baseUrl}}"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"100"}],"variable":[]}},"response":[],"_postman_id":"8ed97924-d35c-439c-8275-856520e72214"},{"name":"Log Details","id":"bff2e7d7-9b9c-4665-8d63-e70c381256f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/agent//logs/{{log_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","logs","{{log_id}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bff2e7d7-9b9c-4665-8d63-e70c381256f1"},{"name":"Human Takeover","id":"47ec9133-5718-479c-9ea3-18f59359a757","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"action\": \"enable\" //enable, disable\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//session/{{session_id}}/humantakeover","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","session","{{session_id}}","humantakeover"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"47ec9133-5718-479c-9ea3-18f59359a757"},{"name":"Download Logs","id":"348b2622-fdba-460a-9e70-fd161d7d02ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/agent//logs/download?date_from=2025-09-01&date_till=2025-10-31","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","logs","download"],"host":["{{baseUrl}}"],"query":[{"key":"date_from","value":"2025-09-01"},{"key":"date_till","value":"2025-10-31"}],"variable":[]}},"response":[],"_postman_id":"348b2622-fdba-460a-9e70-fd161d7d02ae"}],"id":"d5173c5c-f795-4e96-a5eb-9e1dc6516a54","description":"<p>Use the Memory &gt; Conversations APIs to fetch conversation history of the agent.</p>\n","_postman_id":"d5173c5c-f795-4e96-a5eb-9e1dc6516a54","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"Content Generations","item":[{"name":"List Content","id":"8a3deb5c-3ca6-4b83-a0be-7537b153239c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/agent//content?page=1&limit=10&language=bn-IN","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","content"],"host":["{{baseUrl}}"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"10"},{"disabled":true,"key":"visibility","value":"archive"},{"disabled":true,"key":"category","value":""},{"description":{"content":"<p>hi-IN, en-IN</p>\n","type":"text/plain"},"key":"language","value":"bn-IN"}],"variable":[]}},"response":[{"id":"3dd43ee4-d217-4476-91a8-6da786b7a8e5","name":"New Request","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/agent//content"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-type","value":"application/json"},{"key":"x-process-time","value":"0.02339482307434082"},{"key":"x-cloud-trace-context","value":"91809810ed82adc3a0426fc01002f371"},{"key":"date","value":"Fri, 27 Jun 2025 08:44:12 GMT"},{"key":"server","value":"Google Frontend"},{"key":"Content-Length","value":"18815"},{"key":"via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750929983.mp3\",\n            \"category\": \"dekoder-india-news\",\n            \"description\": \"A high-stakes encounter between terrorists and security forces unfolds in Udhampur, J&K, amid heightened tensions before the Amarnath Yatra. Multiple terrorists are reportedly trapped as a joint operation is underway.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"J-K: Encounter breaks out between security forces, terrorists in ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250424041729.jpg\"\n            },\n            \"sid\": \"Encounter-Erupts-in-Jammu--Kashmir-Before-Amarnat-b959481a03b748f09bae1d14510960ac\",\n            \"starred\": 1,\n            \"title\": \"Encounter Erupts in Jammu & Kashmir Before Amarnath Yatra\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-26 09:26:37\",\n            \"visibility\": \"public\",\n            \"category_name\": \"India\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750929931.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"India's Defence Minister Rajnath Singh reiterates zero tolerance policy on terrorism at SCO meet, urging global accountability against terror sponsors.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Defence Minister Rajnath Singh highlights terrorism's threat to ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250626045552.jpg\"\n            },\n            \"sid\": \"Indias-Zero-Tolerance-Stance-on-Terrorism-at-SCO--46486845bd6840478a6bb736fb2209d9\",\n            \"starred\": 1,\n            \"title\": \"India's Zero Tolerance Stance on Terrorism at SCO Meet\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-26 09:25:50\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750905615.mp3\",\n            \"category\": \"dekoder-technology\",\n            \"description\": \"A US federal judge dismissed a copyright lawsuit against Meta over AI model training, possibly paving the way for future litigation.\",\n            \"image\": {\n                \"credits\": \"Reddit\",\n                \"url\": \"https://external-preview.redd.it/metas-ai-copyright-win-comes-with-a-warning-about-fair-use-v0-HMFVGP5588JWw_wK-odjo8jQwqLvjXnQbbHnPC4gDk8.jpeg?width=1080&crop=smart&auto=webp&s=a9e2f668980494cb2d255b03ec783af202da5c6b\"\n            },\n            \"sid\": \"US-Judge-Dismisses-Meta-AI-Copyright-Lawsuit-ef590fc146034e1bad1955658800ad46\",\n            \"starred\": 1,\n            \"title\": \"US Judge Dismisses Meta AI Copyright Lawsuit\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-26 02:41:29\",\n            \"visibility\": \"public\",\n            \"category_name\": \"Technology\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750949922.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"Iran's Supreme Leader Ayatollah Ali Khamenei declares victory over Israel following the recent 12-day war, as global tensions linger.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Iran thanks Indians who 'stood firmly, vocally' in Israel conflict\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250625124101.jpg\"\n            },\n            \"sid\": \"Iran-Claims-Victory-Over-Israel-After-Conflict-e30aa896bef64390b4fa6c5642a0dfd9\",\n            \"starred\": 0,\n            \"title\": \"Iran Claims Victory Over Israel After Conflict\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-26 14:58:51\",\n            \"visibility\": \"private\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750905482.mp3\",\n            \"category\": \"dekoder-business\",\n            \"description\": \"At Infosys's AGM, Chairman Nandan Nilekani expresses deep concerns over unprecedented global uncertainties impacting India's IT sector.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"ANI Business News - India Stock Market, Sensex, Business and ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/Infosys5_ZblRchk_v0G3qSr.jpg\"\n            },\n            \"sid\": \"Nandan-Nilekani-Warns-of-Unprecedented-Global-Unce-26ffd59229794b7d9e1163d1233f7f0e\",\n            \"starred\": 0,\n            \"title\": \"Nandan Nilekani Warns of Unprecedented Global Uncertainty at Infosys AGM\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-26 02:38:14\",\n            \"visibility\": \"public\",\n            \"category_name\": \"Business\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750905222.mp3\",\n            \"category\": \"dekoder-entertainment\",\n            \"description\": \"Rajkummar Rao confirmed to portray cricket icon Sourav Ganguly in an upcoming biopic, thrilling fans of both the actor and the cricket legend.\",\n            \"image\": {\n                \"credits\": \"\",\n                \"url\": \"https://static.gujaratsamachar.com/articles/articles_thumbs/photo_1750862972188.jpeg\"\n            },\n            \"sid\": \"Rajkummar-Rao-Steps-Up-as-Sourav-Ganguly-in-New-Bi-b15ee0a3b0744cada717de5aecaed7d5\",\n            \"starred\": null,\n            \"title\": \"Rajkummar Rao Steps Up as Sourav Ganguly in New Biopic\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-26 02:33:50\",\n            \"visibility\": \"public\",\n            \"category_name\": \"Entertainment\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750905180.mp3\",\n            \"category\": \"dekoder-entertainment\",\n            \"description\": \"FWICE demands 'Sardaar Ji 3' comply with Indian laws; social media backlash follows the casting of Pakistani actress Hania Aamir.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Disheartening and unfair\\\": Diljit Dosanjh's manager on 'Sardaar Ji ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250625074536.jpg\"\n            },\n            \"sid\": \"Diljit-Dosanjhs-Sardaar-Ji-3-Faces-Backlash-Ami-4bbac3974a3b44f49a921789b75051e6\",\n            \"starred\": null,\n            \"title\": \"Diljit Dosanjh's 'Sardaar Ji 3' Faces Backlash Amidst India-Pakistan Tensions\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-26 02:33:09\",\n            \"visibility\": \"public\",\n            \"category_name\": \"Entertainment\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750905145.mp3\",\n            \"category\": \"dekoder-entertainment\",\n            \"description\": \"Kajol's horror drama 'Maa' gets cleared by CBFC with a UA certificate, igniting discussions on film content and regulation shift.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Trailer of Kajol-starrer mythological horror 'Maa' unveiled, fans ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250529122538.jpg\"\n            },\n            \"sid\": \"CBFC-Approves-Kajols-Horror-Film-Maa-with-UA-Ce-2546b255771b4b28a99c04dfc1268015\",\n            \"starred\": null,\n            \"title\": \"CBFC Approves Kajol's Horror Film 'Maa' with UA Certificate\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-26 02:32:36\",\n            \"visibility\": \"public\",\n            \"category_name\": \"Entertainment\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750854759.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"NATO agrees to hike defence spending significantly after Trump's prodding, amid rising threats like the Ukraine conflict. This move marks a shift in global security dynamics.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"German politicians criticise US President-elect Trump's NATO ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250109225507.jpg\"\n            },\n            \"sid\": \"NATO-Boosts-Defence-Spending-Amidst-Trumps-Pressu-ffa3379e08074f00b43755c83db3bdab\",\n            \"starred\": null,\n            \"title\": \"NATO Boosts Defence Spending Amidst Trump's Pressure\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 12:32:53\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750853085.mp3\",\n            \"category\": \"dekoder-india-news\",\n            \"description\": \"The Union Cabinet adopts a resolution condemning the Emergency, calling it an 'attack on democracy'.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"PM Modi chairs key meeting with Cabinet ministers after his State ...\",\n                \"url\": \"https://aniportalimages.s3.amazonaws.com/media/details/ANI-20230626065958.jpg\"\n            },\n            \"sid\": \"Union-Cabinet-Condemns-Emergency-on-50th-Anniversa-51b29eab709849f5a73e3c59d47dca62\",\n            \"starred\": 0,\n            \"title\": \"Union Cabinet Condemns Emergency on 50th Anniversary\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 12:04:57\",\n            \"visibility\": \"private\",\n            \"category_name\": \"India\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750852918.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"Iran confirms significant damage to nuclear sites from US airstrikes amid regional tensions.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"US General shares details of 'Operation Midnight Hammer,' says \\\"Op ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250622172530.jpg\"\n            },\n            \"sid\": \"Iran-Confirms-US-Strikes-Damaged-Nuclear-Sites-4cb822fd61274bf29af6f685505913c2\",\n            \"starred\": null,\n            \"title\": \"Iran Confirms US Strikes Damaged Nuclear Sites\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 12:02:23\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750847367.mp3\",\n            \"category\": \"dekoder-business\",\n            \"description\": \"RBI initiates key liquidity measures with a ₹1 trillion VRRR auction and extended trading hours, aiming to stabilize financial markets.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Financial market reforms by RBI aimed at providing strong bedrock ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20240408133433.jpg\"\n            },\n            \"sid\": \"RBIs-Strategic-Liquidity-Moves-6ba7b7667e5e4e548c6b8de00b42beec\",\n            \"starred\": 0,\n            \"title\": \"RBI's Strategic Liquidity Moves\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 10:29:38\",\n            \"visibility\": \"private\",\n            \"category_name\": \"Business\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750833152.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"US intel report disputes Trump's claim on Iran strike effectiveness, suggesting Iran's core nuclear facilities remain intact.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"No rise in off-site radiation detected after US strikes on Iranian ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250622054616.jpg\"\n            },\n            \"sid\": \"US-Intel-Report-Vs-Trumps-Claims-on-Iran-Strikes-9a947795000d4a10851ff201f4c52908\",\n            \"starred\": null,\n            \"title\": \"US Intel Report Vs Trump's Claims on Iran Strikes\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 06:32:42\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750833109.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"NATO leaders convene in The Hague to discuss defense spending and alliance unity amid global security threats.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Biden, Stoltenberg discuss Ukraine ahead of NATO summit on ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/Biden_Stoltenberg_mar242022032412402220220324132608.jpg\"\n            },\n            \"sid\": \"NATO-Leaders-Gather-in-The-Hague-Amidst-Tensions-ed3a28e7fce64da4b2ae091067131b61\",\n            \"starred\": 0,\n            \"title\": \"NATO Leaders Gather in The Hague Amidst Tensions\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 06:32:08\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750832983.mp3\",\n            \"category\": \"dekoder-business\",\n            \"description\": \"Discover the benefits of Rs 5,000 SIPs versus Rs 5,00,000 lump sum investments in mutual funds; understand which approach aligns with your financial goals.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Building long-term wealth? Combine SIP investment with a lumpsum ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250530071139.jpg\"\n            },\n            \"sid\": \"SIP-vs-Lump-Sum-Which-Investment-Strategy-Suits-Y-a16e42ba2b4f477bb451c5fe66587cf4\",\n            \"starred\": 0,\n            \"title\": \"SIP vs Lump Sum: Which Investment Strategy Suits You Best?\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 06:29:54\",\n            \"visibility\": \"private\",\n            \"category_name\": \"Business\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750830706.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"IAF Group Captain Shubhanshu Shukla is set to become the second Indian in space with Axiom 4's ISS mission, marking a milestone for India's space ambitions.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"ISRO to conduct key space experiments through Axiom-4 mission\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250625021950.jpg\"\n            },\n            \"sid\": \"Shubhanshu-Shukla-to-Launch-on-Historic-Axiom-4-Mi-3ba3bd22e71e48d89952c69e8fffdc71\",\n            \"starred\": null,\n            \"title\": \"Capt. Shubhanshu Shukla to Launch on Historic Axiom 4 Mission\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 05:51:55\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750828701.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"Zohran Mamdani emerged victorious in NYC's Democratic mayoral primary, marking a shift towards progressive politics. His victory, backed by prominent endorsements, highlights the growing influence of Indian Americans and the left.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Tonight is his night\\\": Andrew Cuomo concedes defeat to Zohran ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250625032126.jpeg\"\n            },\n            \"sid\": \"Zohran-Mamdani-Wins-NYC-Democratic-Primary-99ba5a4c67a94200ac904150b98728ac\",\n            \"starred\": null,\n            \"title\": \"Zohran Mamdani Wins NYC Democratic Primary\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 05:18:41\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750828622.mp3\",\n            \"category\": \"dekoder-business\",\n            \"description\": \"Adani Group raises $1 billion to refinance Mumbai Airport's debt, boosting financial stability and supporting future plans.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Gautam Adani visits Navi Mumbai airport, set for inauguration this ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250316115622.jpg\"\n            },\n            \"sid\": \"Adani-Secures-1B-for-Mumbai-Airport-Debt-Refinanc-cba5a999e74b44efb41625382b1299eb\",\n            \"starred\": 0,\n            \"title\": \"Adani Secures $1B for Mumbai Airport Debt Refinancing\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 05:17:18\",\n            \"visibility\": \"public\",\n            \"category_name\": \"Business\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750828590.mp3\",\n            \"category\": \"dekoder-india-news\",\n            \"description\": \"Mumbai experiences severe flooding as heavy rains cause disruptions in transport and daily life, with authorities urging caution.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Maharashtra: Mumbai experiences heavy spells of rain; several ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20240718041718.jpg\"\n            },\n            \"sid\": \"Mumbai-Faces-Severe-Flooding-Amid-Heavy-Rains-52c2a7c0e2d74cad92dc3438d3c7b68c\",\n            \"starred\": 0,\n            \"title\": \"Mumbai Faces Severe Flooding Amid Heavy Rains\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 05:17:15\",\n            \"visibility\": \"public\",\n            \"category_name\": \"India\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750827962.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"Iran and Israel's ceasefire relieves global markets, boosting India's exports and strengthening the rupee.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"No alternative to dialogue, diplomacy\\\": MEA on Iran-Israel ceasefire\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250624165204.jpg\"\n            },\n            \"sid\": \"Iran-Israel-Ceasefire-Boosts-Global-Markets-a9dfd6699e9743c7b9e06a57c491787e\",\n            \"starred\": 0,\n            \"title\": \"Iran-Israel Ceasefire Boosts Global Markets\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 05:08:04\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750828004.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"UN chief alarmed by Iran's missile attack on US base in Qatar, risking Middle East ceasefire stability.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Iran fires missiles at US bases in Qatar and Iraq, targets Al ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250623173048.jpg\"\n            },\n            \"sid\": \"Irans-Missile-Strike-Upsets-Middle-East-Ceasefire-f6b013ea814e43a582517707ba2f7324\",\n            \"starred\": null,\n            \"title\": \"Iran's Missile Strike Upsets Middle East Ceasefire\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 05:08:02\",\n            \"visibility\": \"private\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750828046.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"Iranian media reports rising military desertions amid Israeli bombardment, signaling internal challenges for Iran's armed forces during the escalating conflict.\",\n            \"image\": {\n                \"credits\": \"\",\n                \"url\": \"\"\n            },\n            \"sid\": \"Iranian-Military-Faces-Desertions-Amid-Israeli-Str-1e9d58cbac2740078d829f299b79ff82\",\n            \"starred\": null,\n            \"title\": \"Iranian Military Faces Desertions Amid Israeli Strikes\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 05:07:34\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750827679.mp3\",\n            \"category\": \"dekoder-sports\",\n            \"description\": \"In a gripping first Test, England completes a record chase to defeat India by five wickets at Headingley, setting the tone for an intense series.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"India post an unflattering record; 471 against England lowest Test ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250621151710.jpg\"\n            },\n            \"sid\": \"Englands-Historic-Chase-Stuns-India-in-Test-Opene-4fd8e4ad3325437cb28836dcdba932ce\",\n            \"starred\": null,\n            \"title\": \"England's Historic Chase Stuns India in Test Opener\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 05:01:48\",\n            \"visibility\": \"public\",\n            \"category_name\": \"Sports\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750751542.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"President Trump announces Israel's agreement to a ceasefire proposal amid tense conflicts with Iran, despite Iran denying formal agreement. Global calls for de-escalation continue as India monitors the situation.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Netanyahu says Israel \\\"very close\\\" to achieving goals in Iran ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250623064253.jpg\"\n            },\n            \"sid\": \"Israel-Agrees-to-Ceasefire-Proposal-with-Iran-d4dc8610b873471abbc326e470a4f729\",\n            \"starred\": null,\n            \"title\": \"Israel Agrees to Ceasefire Proposal with Iran\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-24 07:52:55\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750736368.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"Iran offers to stop attacks on Israel if Israel ceases its aggressive actions, amidst rising tension and global calls for restraint.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Israel has right to defend itself, Iran source of terror,\\\" says G7 ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250617042510.jpg\"\n            },\n            \"sid\": \"Iran-Conditionally-Offers-to-Halt-Attacks-on-Israe-83ec1089209640f3ab96bf70283c3b4c\",\n            \"starred\": 0,\n            \"title\": \"Iran Conditionally Offers to Halt Attacks on Israel\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-24 03:41:20\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"limit\": 25,\n        \"next_page\": 2,\n        \"prev_page\": \"\",\n        \"total_items\": 722,\n        \"total_pages\": 29\n    }\n}"}],"_postman_id":"8a3deb5c-3ca6-4b83-a0be-7537b153239c"},{"name":"Search Content","id":"5735dfb3-8803-443b-9bf2-a0087a6bfdcd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/agent//content?page=1&limit=10&language=bn-IN","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","content"],"host":["{{baseUrl}}"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"10"},{"disabled":true,"key":"visibility","value":"archive"},{"disabled":true,"key":"category","value":""},{"description":{"content":"<p>hi-IN, en-IN</p>\n","type":"text/plain"},"key":"language","value":"bn-IN"}],"variable":[]}},"response":[{"id":"fba4e33f-7db0-4388-885c-60edf435ff2f","name":"New Request","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/agent//content"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-type","value":"application/json"},{"key":"x-process-time","value":"0.02339482307434082"},{"key":"x-cloud-trace-context","value":"91809810ed82adc3a0426fc01002f371"},{"key":"date","value":"Fri, 27 Jun 2025 08:44:12 GMT"},{"key":"server","value":"Google Frontend"},{"key":"Content-Length","value":"18815"},{"key":"via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750929983.mp3\",\n            \"category\": \"dekoder-india-news\",\n            \"description\": \"A high-stakes encounter between terrorists and security forces unfolds in Udhampur, J&K, amid heightened tensions before the Amarnath Yatra. Multiple terrorists are reportedly trapped as a joint operation is underway.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"J-K: Encounter breaks out between security forces, terrorists in ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250424041729.jpg\"\n            },\n            \"sid\": \"Encounter-Erupts-in-Jammu--Kashmir-Before-Amarnat-b959481a03b748f09bae1d14510960ac\",\n            \"starred\": 1,\n            \"title\": \"Encounter Erupts in Jammu & Kashmir Before Amarnath Yatra\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-26 09:26:37\",\n            \"visibility\": \"public\",\n            \"category_name\": \"India\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750929931.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"India's Defence Minister Rajnath Singh reiterates zero tolerance policy on terrorism at SCO meet, urging global accountability against terror sponsors.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Defence Minister Rajnath Singh highlights terrorism's threat to ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250626045552.jpg\"\n            },\n            \"sid\": \"Indias-Zero-Tolerance-Stance-on-Terrorism-at-SCO--46486845bd6840478a6bb736fb2209d9\",\n            \"starred\": 1,\n            \"title\": \"India's Zero Tolerance Stance on Terrorism at SCO Meet\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-26 09:25:50\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750905615.mp3\",\n            \"category\": \"dekoder-technology\",\n            \"description\": \"A US federal judge dismissed a copyright lawsuit against Meta over AI model training, possibly paving the way for future litigation.\",\n            \"image\": {\n                \"credits\": \"Reddit\",\n                \"url\": \"https://external-preview.redd.it/metas-ai-copyright-win-comes-with-a-warning-about-fair-use-v0-HMFVGP5588JWw_wK-odjo8jQwqLvjXnQbbHnPC4gDk8.jpeg?width=1080&crop=smart&auto=webp&s=a9e2f668980494cb2d255b03ec783af202da5c6b\"\n            },\n            \"sid\": \"US-Judge-Dismisses-Meta-AI-Copyright-Lawsuit-ef590fc146034e1bad1955658800ad46\",\n            \"starred\": 1,\n            \"title\": \"US Judge Dismisses Meta AI Copyright Lawsuit\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-26 02:41:29\",\n            \"visibility\": \"public\",\n            \"category_name\": \"Technology\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750949922.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"Iran's Supreme Leader Ayatollah Ali Khamenei declares victory over Israel following the recent 12-day war, as global tensions linger.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Iran thanks Indians who 'stood firmly, vocally' in Israel conflict\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250625124101.jpg\"\n            },\n            \"sid\": \"Iran-Claims-Victory-Over-Israel-After-Conflict-e30aa896bef64390b4fa6c5642a0dfd9\",\n            \"starred\": 0,\n            \"title\": \"Iran Claims Victory Over Israel After Conflict\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-26 14:58:51\",\n            \"visibility\": \"private\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750905482.mp3\",\n            \"category\": \"dekoder-business\",\n            \"description\": \"At Infosys's AGM, Chairman Nandan Nilekani expresses deep concerns over unprecedented global uncertainties impacting India's IT sector.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"ANI Business News - India Stock Market, Sensex, Business and ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/Infosys5_ZblRchk_v0G3qSr.jpg\"\n            },\n            \"sid\": \"Nandan-Nilekani-Warns-of-Unprecedented-Global-Unce-26ffd59229794b7d9e1163d1233f7f0e\",\n            \"starred\": 0,\n            \"title\": \"Nandan Nilekani Warns of Unprecedented Global Uncertainty at Infosys AGM\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-26 02:38:14\",\n            \"visibility\": \"public\",\n            \"category_name\": \"Business\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750905222.mp3\",\n            \"category\": \"dekoder-entertainment\",\n            \"description\": \"Rajkummar Rao confirmed to portray cricket icon Sourav Ganguly in an upcoming biopic, thrilling fans of both the actor and the cricket legend.\",\n            \"image\": {\n                \"credits\": \"\",\n                \"url\": \"https://static.gujaratsamachar.com/articles/articles_thumbs/photo_1750862972188.jpeg\"\n            },\n            \"sid\": \"Rajkummar-Rao-Steps-Up-as-Sourav-Ganguly-in-New-Bi-b15ee0a3b0744cada717de5aecaed7d5\",\n            \"starred\": null,\n            \"title\": \"Rajkummar Rao Steps Up as Sourav Ganguly in New Biopic\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-26 02:33:50\",\n            \"visibility\": \"public\",\n            \"category_name\": \"Entertainment\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750905180.mp3\",\n            \"category\": \"dekoder-entertainment\",\n            \"description\": \"FWICE demands 'Sardaar Ji 3' comply with Indian laws; social media backlash follows the casting of Pakistani actress Hania Aamir.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Disheartening and unfair\\\": Diljit Dosanjh's manager on 'Sardaar Ji ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250625074536.jpg\"\n            },\n            \"sid\": \"Diljit-Dosanjhs-Sardaar-Ji-3-Faces-Backlash-Ami-4bbac3974a3b44f49a921789b75051e6\",\n            \"starred\": null,\n            \"title\": \"Diljit Dosanjh's 'Sardaar Ji 3' Faces Backlash Amidst India-Pakistan Tensions\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-26 02:33:09\",\n            \"visibility\": \"public\",\n            \"category_name\": \"Entertainment\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750905145.mp3\",\n            \"category\": \"dekoder-entertainment\",\n            \"description\": \"Kajol's horror drama 'Maa' gets cleared by CBFC with a UA certificate, igniting discussions on film content and regulation shift.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Trailer of Kajol-starrer mythological horror 'Maa' unveiled, fans ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250529122538.jpg\"\n            },\n            \"sid\": \"CBFC-Approves-Kajols-Horror-Film-Maa-with-UA-Ce-2546b255771b4b28a99c04dfc1268015\",\n            \"starred\": null,\n            \"title\": \"CBFC Approves Kajol's Horror Film 'Maa' with UA Certificate\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-26 02:32:36\",\n            \"visibility\": \"public\",\n            \"category_name\": \"Entertainment\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750854759.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"NATO agrees to hike defence spending significantly after Trump's prodding, amid rising threats like the Ukraine conflict. This move marks a shift in global security dynamics.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"German politicians criticise US President-elect Trump's NATO ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250109225507.jpg\"\n            },\n            \"sid\": \"NATO-Boosts-Defence-Spending-Amidst-Trumps-Pressu-ffa3379e08074f00b43755c83db3bdab\",\n            \"starred\": null,\n            \"title\": \"NATO Boosts Defence Spending Amidst Trump's Pressure\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 12:32:53\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750853085.mp3\",\n            \"category\": \"dekoder-india-news\",\n            \"description\": \"The Union Cabinet adopts a resolution condemning the Emergency, calling it an 'attack on democracy'.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"PM Modi chairs key meeting with Cabinet ministers after his State ...\",\n                \"url\": \"https://aniportalimages.s3.amazonaws.com/media/details/ANI-20230626065958.jpg\"\n            },\n            \"sid\": \"Union-Cabinet-Condemns-Emergency-on-50th-Anniversa-51b29eab709849f5a73e3c59d47dca62\",\n            \"starred\": 0,\n            \"title\": \"Union Cabinet Condemns Emergency on 50th Anniversary\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 12:04:57\",\n            \"visibility\": \"private\",\n            \"category_name\": \"India\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750852918.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"Iran confirms significant damage to nuclear sites from US airstrikes amid regional tensions.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"US General shares details of 'Operation Midnight Hammer,' says \\\"Op ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250622172530.jpg\"\n            },\n            \"sid\": \"Iran-Confirms-US-Strikes-Damaged-Nuclear-Sites-4cb822fd61274bf29af6f685505913c2\",\n            \"starred\": null,\n            \"title\": \"Iran Confirms US Strikes Damaged Nuclear Sites\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 12:02:23\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750847367.mp3\",\n            \"category\": \"dekoder-business\",\n            \"description\": \"RBI initiates key liquidity measures with a ₹1 trillion VRRR auction and extended trading hours, aiming to stabilize financial markets.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Financial market reforms by RBI aimed at providing strong bedrock ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20240408133433.jpg\"\n            },\n            \"sid\": \"RBIs-Strategic-Liquidity-Moves-6ba7b7667e5e4e548c6b8de00b42beec\",\n            \"starred\": 0,\n            \"title\": \"RBI's Strategic Liquidity Moves\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 10:29:38\",\n            \"visibility\": \"private\",\n            \"category_name\": \"Business\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750833152.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"US intel report disputes Trump's claim on Iran strike effectiveness, suggesting Iran's core nuclear facilities remain intact.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"No rise in off-site radiation detected after US strikes on Iranian ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250622054616.jpg\"\n            },\n            \"sid\": \"US-Intel-Report-Vs-Trumps-Claims-on-Iran-Strikes-9a947795000d4a10851ff201f4c52908\",\n            \"starred\": null,\n            \"title\": \"US Intel Report Vs Trump's Claims on Iran Strikes\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 06:32:42\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750833109.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"NATO leaders convene in The Hague to discuss defense spending and alliance unity amid global security threats.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Biden, Stoltenberg discuss Ukraine ahead of NATO summit on ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/Biden_Stoltenberg_mar242022032412402220220324132608.jpg\"\n            },\n            \"sid\": \"NATO-Leaders-Gather-in-The-Hague-Amidst-Tensions-ed3a28e7fce64da4b2ae091067131b61\",\n            \"starred\": 0,\n            \"title\": \"NATO Leaders Gather in The Hague Amidst Tensions\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 06:32:08\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750832983.mp3\",\n            \"category\": \"dekoder-business\",\n            \"description\": \"Discover the benefits of Rs 5,000 SIPs versus Rs 5,00,000 lump sum investments in mutual funds; understand which approach aligns with your financial goals.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Building long-term wealth? Combine SIP investment with a lumpsum ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250530071139.jpg\"\n            },\n            \"sid\": \"SIP-vs-Lump-Sum-Which-Investment-Strategy-Suits-Y-a16e42ba2b4f477bb451c5fe66587cf4\",\n            \"starred\": 0,\n            \"title\": \"SIP vs Lump Sum: Which Investment Strategy Suits You Best?\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 06:29:54\",\n            \"visibility\": \"private\",\n            \"category_name\": \"Business\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750830706.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"IAF Group Captain Shubhanshu Shukla is set to become the second Indian in space with Axiom 4's ISS mission, marking a milestone for India's space ambitions.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"ISRO to conduct key space experiments through Axiom-4 mission\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250625021950.jpg\"\n            },\n            \"sid\": \"Shubhanshu-Shukla-to-Launch-on-Historic-Axiom-4-Mi-3ba3bd22e71e48d89952c69e8fffdc71\",\n            \"starred\": null,\n            \"title\": \"Capt. Shubhanshu Shukla to Launch on Historic Axiom 4 Mission\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 05:51:55\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750828701.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"Zohran Mamdani emerged victorious in NYC's Democratic mayoral primary, marking a shift towards progressive politics. His victory, backed by prominent endorsements, highlights the growing influence of Indian Americans and the left.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Tonight is his night\\\": Andrew Cuomo concedes defeat to Zohran ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250625032126.jpeg\"\n            },\n            \"sid\": \"Zohran-Mamdani-Wins-NYC-Democratic-Primary-99ba5a4c67a94200ac904150b98728ac\",\n            \"starred\": null,\n            \"title\": \"Zohran Mamdani Wins NYC Democratic Primary\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 05:18:41\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750828622.mp3\",\n            \"category\": \"dekoder-business\",\n            \"description\": \"Adani Group raises $1 billion to refinance Mumbai Airport's debt, boosting financial stability and supporting future plans.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Gautam Adani visits Navi Mumbai airport, set for inauguration this ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250316115622.jpg\"\n            },\n            \"sid\": \"Adani-Secures-1B-for-Mumbai-Airport-Debt-Refinanc-cba5a999e74b44efb41625382b1299eb\",\n            \"starred\": 0,\n            \"title\": \"Adani Secures $1B for Mumbai Airport Debt Refinancing\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 05:17:18\",\n            \"visibility\": \"public\",\n            \"category_name\": \"Business\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750828590.mp3\",\n            \"category\": \"dekoder-india-news\",\n            \"description\": \"Mumbai experiences severe flooding as heavy rains cause disruptions in transport and daily life, with authorities urging caution.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Maharashtra: Mumbai experiences heavy spells of rain; several ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20240718041718.jpg\"\n            },\n            \"sid\": \"Mumbai-Faces-Severe-Flooding-Amid-Heavy-Rains-52c2a7c0e2d74cad92dc3438d3c7b68c\",\n            \"starred\": 0,\n            \"title\": \"Mumbai Faces Severe Flooding Amid Heavy Rains\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 05:17:15\",\n            \"visibility\": \"public\",\n            \"category_name\": \"India\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750827962.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"Iran and Israel's ceasefire relieves global markets, boosting India's exports and strengthening the rupee.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"No alternative to dialogue, diplomacy\\\": MEA on Iran-Israel ceasefire\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250624165204.jpg\"\n            },\n            \"sid\": \"Iran-Israel-Ceasefire-Boosts-Global-Markets-a9dfd6699e9743c7b9e06a57c491787e\",\n            \"starred\": 0,\n            \"title\": \"Iran-Israel Ceasefire Boosts Global Markets\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 05:08:04\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750828004.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"UN chief alarmed by Iran's missile attack on US base in Qatar, risking Middle East ceasefire stability.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Iran fires missiles at US bases in Qatar and Iraq, targets Al ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250623173048.jpg\"\n            },\n            \"sid\": \"Irans-Missile-Strike-Upsets-Middle-East-Ceasefire-f6b013ea814e43a582517707ba2f7324\",\n            \"starred\": null,\n            \"title\": \"Iran's Missile Strike Upsets Middle East Ceasefire\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 05:08:02\",\n            \"visibility\": \"private\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750828046.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"Iranian media reports rising military desertions amid Israeli bombardment, signaling internal challenges for Iran's armed forces during the escalating conflict.\",\n            \"image\": {\n                \"credits\": \"\",\n                \"url\": \"\"\n            },\n            \"sid\": \"Iranian-Military-Faces-Desertions-Amid-Israeli-Str-1e9d58cbac2740078d829f299b79ff82\",\n            \"starred\": null,\n            \"title\": \"Iranian Military Faces Desertions Amid Israeli Strikes\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 05:07:34\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750827679.mp3\",\n            \"category\": \"dekoder-sports\",\n            \"description\": \"In a gripping first Test, England completes a record chase to defeat India by five wickets at Headingley, setting the tone for an intense series.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"India post an unflattering record; 471 against England lowest Test ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250621151710.jpg\"\n            },\n            \"sid\": \"Englands-Historic-Chase-Stuns-India-in-Test-Opene-4fd8e4ad3325437cb28836dcdba932ce\",\n            \"starred\": null,\n            \"title\": \"England's Historic Chase Stuns India in Test Opener\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-25 05:01:48\",\n            \"visibility\": \"public\",\n            \"category_name\": \"Sports\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750751542.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"President Trump announces Israel's agreement to a ceasefire proposal amid tense conflicts with Iran, despite Iran denying formal agreement. Global calls for de-escalation continue as India monitors the situation.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Netanyahu says Israel \\\"very close\\\" to achieving goals in Iran ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250623064253.jpg\"\n            },\n            \"sid\": \"Israel-Agrees-to-Ceasefire-Proposal-with-Iran-d4dc8610b873471abbc326e470a4f729\",\n            \"starred\": null,\n            \"title\": \"Israel Agrees to Ceasefire Proposal with Iran\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-24 07:52:55\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        },\n        {\n            \"audioUrl\": \"https://ailib-public.s3.us-west-2.amazonaws.com/ailibrary-speech-1750736368.mp3\",\n            \"category\": \"dekoder-world\",\n            \"description\": \"Iran offers to stop attacks on Israel if Israel ceases its aggressive actions, amidst rising tension and global calls for restraint.\",\n            \"image\": {\n                \"credits\": \"www.aninews.in\",\n                \"title\": \"Israel has right to defend itself, Iran source of terror,\\\" says G7 ...\",\n                \"url\": \"https://d3lzcn6mbbadaf.cloudfront.net/media/details/ANI-20250617042510.jpg\"\n            },\n            \"sid\": \"Iran-Conditionally-Offers-to-Halt-Attacks-on-Israe-83ec1089209640f3ab96bf70283c3b4c\",\n            \"starred\": 0,\n            \"title\": \"Iran Conditionally Offers to Halt Attacks on Israel\",\n            \"type\": \"article\",\n            \"updated_timestamp\": \"2025-06-24 03:41:20\",\n            \"visibility\": \"public\",\n            \"category_name\": \"World\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"limit\": 25,\n        \"next_page\": 2,\n        \"prev_page\": \"\",\n        \"total_items\": 722,\n        \"total_pages\": 29\n    }\n}"}],"_postman_id":"5735dfb3-8803-443b-9bf2-a0087a6bfdcd"},{"name":"Content Details","id":"aa9a613f-9580-4047-a6f9-b1b1f8d329d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/agent//content/{{content_sid}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","content","{{content_sid}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"aa9a613f-9580-4047-a6f9-b1b1f8d329d5"},{"name":"Update Content","id":"91113e88-28df-4f6b-b7bc-360867d56fb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    // \"audioUrl\": \"https://ailib-public.s3-us-west-2.amazonaws.com/e13a1f15155c4c7980b25c63fa7ceca6_combined.mp3\",\n    // \"content_body\": null,\n    // \"created_timestamp\": \"2025-04-07 22:13:38\",\n    \"description\": \"Italy takes on Northern Ireland, Sweden faces Ukraine in crucial European playoffs. Coaches Gattuso and Potter lead their teams in a bid for World Cup spots.\"\n    // \"duration\": null,\n    // \"email\": null,\n    // \"id\": 2603,\n    // \"image\": {\n    //     \"credits\": \"BBC\",\n    //     \"url\": \"https://ichef.bbci.co.uk/images/ic/1200xn/p0786j0d.jpg\"\n    // },\n    // \"links\": null,\n    // \"meta\": null,\n    // \"namespace\": \"dekoderdee-20250316084429\",\n    // \"script\": [\n    //     {\n    //         \"speaker1\": \"Welcome to Big Picture! Today we’re diving into a revolution in the way we think about food and climate. Veganism, plant-based choices – yeh sab sirf trends nahi, but a vision for a sustainable future. Aapka kya manna hai?\",\n    //         \"speaker2\": \"Bilkul! Hamara environment is at risk, and every decision we make counts. Plant-based diets can significantly reduce carbon footprints, which is a big win for our planet.\",\n    //         \"voice1\": \"https://ailib-public.s3-us-west-2.amazonaws.com/e13a1f15155c4c7980b25c63fa7ceca6_speaker1_0.mp3\",\n    //         \"voice2\": \"https://ailib-public.s3-us-west-2.amazonaws.com/e13a1f15155c4c7980b25c63fa7ceca6_speaker2_0.mp3\"\n    //     },\n    //     {\n    //         \"speaker1\": \"Exactly! सोचिए, deforestation और greenhouse gas emissions - yeh sab hamare current animal agriculture practices ka result hai. Veganism not only tackles these issues, but it also promotes ethical living.\",\n    //         \"speaker2\": \"Aur that’s where the conversation gets interesting. Flexitarianism, jo moderate meat consumption allow karta hai, might just be the practical balance many need in today’s diverse world.\",\n    //         \"voice1\": \"https://ailib-public.s3-us-west-2.amazonaws.com/e13a1f15155c4c7980b25c63fa7ceca6_speaker1_1.mp3\",\n    //         \"voice2\": \"https://ailib-public.s3-us-west-2.amazonaws.com/e13a1f15155c4c7980b25c63fa7ceca6_speaker2_1.mp3\"\n    //     },\n    //     {\n    //         \"speaker1\": \"Right on point! Veganism offers an ethical, sustainable approach, but strict adherence is challenging for many. कुछ लोग कहेंगे कि it’s hard to completely change your diet overnight.\",\n    //         \"speaker2\": \"True, and that’s why the flexibility of a flexitarian approach acknowledges cultural norms and nutritional needs while still reducing environmental impact.\",\n    //         \"voice1\": \"https://ailib-public.s3-us-west-2.amazonaws.com/e13a1f15155c4c7980b25c63fa7ceca6_speaker1_2.mp3\",\n    //         \"voice2\": \"https://ailib-public.s3-us-west-2.amazonaws.com/e13a1f15155c4c7980b25c63fa7ceca6_speaker2_2.mp3\"\n    //     },\n    //     {\n    //         \"speaker1\": \"Imagine the impact if governments and organizations incentivized plant-based diets – yeh would be a game changer in reducing environmental stress on our planet.\",\n    //         \"speaker2\": \"Absolutely! Effective policies could accelerate the shift, transforming our food systems from the ground up. It’s about creating a sustainable ecosystem.\",\n    //         \"voice1\": \"https://ailib-public.s3-us-west-2.amazonaws.com/e13a1f15155c4c7980b25c63fa7ceca6_speaker1_3.mp3\",\n    //         \"voice2\": \"https://ailib-public.s3-us-west-2.amazonaws.com/e13a1f15155c4c7980b25c63fa7ceca6_speaker2_3.mp3\"\n    //     },\n    //     {\n    //         \"speaker1\": \"And let’s not forget the rising eco-anxiety among youth – ये नया परिवर्तन के लिए drive पैदा करता है. Young activists are urging for these changes, demanding more vegan options in food outlets.\",\n    //         \"speaker2\": \"Yes, they're the vanguard of this revolution. Every meal becomes a statement. It’s not just about food, it's about a future vision where each choice contributes to climate resilience.\",\n    //         \"voice1\": \"https://ailib-public.s3-us-west-2.amazonaws.com/e13a1f15155c4c7980b25c63fa7ceca6_speaker1_4.mp3\",\n    //         \"voice2\": \"https://ailib-public.s3-us-west-2.amazonaws.com/e13a1f15155c4c7980b25c63fa7ceca6_speaker2_4.mp3\"\n    //     },\n    //     {\n    //         \"speaker1\": \"Now here’s a thought: What if you decide to change your diet today? Kya aap सच में believe करते हैं कि a single change can create a ripple effect globally?\",\n    //         \"speaker2\": \"Definitely, every drop in the bucket counts. Small changes accumulate and eventually transform entire societies. The revolution starts at the individual level.\",\n    //         \"voice1\": \"https://ailib-public.s3-us-west-2.amazonaws.com/e13a1f15155c4c7980b25c63fa7ceca6_speaker1_5.mp3\",\n    //         \"voice2\": \"https://ailib-public.s3-us-west-2.amazonaws.com/e13a1f15155c4c7980b25c63fa7ceca6_speaker2_5.mp3\"\n    //     },\n    //     {\n    //         \"speaker1\": \"Think about it – each plate you choose can either fuel environmental degradation or foster sustainable change. Isn't that powerful?\",\n    //         \"speaker2\": \"Exactly! It's like setting the stage for future generations. Our dietary choices have the power to either sustain or deplete our resources, making every conscious decision critical.\",\n    //         \"voice1\": \"https://ailib-public.s3-us-west-2.amazonaws.com/e13a1f15155c4c7980b25c63fa7ceca6_speaker1_6.mp3\",\n    //         \"voice2\": \"https://ailib-public.s3-us-west-2.amazonaws.com/e13a1f15155c4c7980b25c63fa7ceca6_speaker2_6.mp3\"\n    //     },\n    //     {\n    //         \"speaker1\": \"So today, we challenged the norm and discussed big ideas – from ethical veganism to the pragmatic balance of flexitarianism. Yeh toh sirf शुरुआत है for a larger conversation.\",\n    //         \"speaker2\": \"Bilkul, yaar! Stay tuned for more provocative insights on Big Picture. The future is not just being served; it’s being reimagined, one bite at a time.\",\n    //         \"voice1\": \"https://ailib-public.s3-us-west-2.amazonaws.com/e13a1f15155c4c7980b25c63fa7ceca6_speaker1_7.mp3\",\n    //         \"voice2\": \"https://ailib-public.s3-us-west-2.amazonaws.com/e13a1f15155c4c7980b25c63fa7ceca6_speaker2_7.mp3\"\n    //     }\n    // ],\n    // \"sid\": \"dceeb7fe5ad242369a07a026740f18b7\",\n    // \"socialPosts\": null,\n    // \"source\": null,\n    // \"title\": \"Veganism vs Flexitarianism: A Sustainable Future Debate\",\n    // \"type\": \"podcast\",\n    // \"updated_timestamp\": \"2025-04-07 22:14:50\",\n    // \"userEmail\": \"arani@ailibrary.ai\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//content/{{content_sid}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","content","{{content_sid}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"91113e88-28df-4f6b-b7bc-360867d56fb7"},{"name":"List Newsletters","id":"6a557ac5-b73a-409d-989e-610c2685332b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//newsletters?page=1&limit=100&visibility=public&language=en-IN","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","newsletters"],"host":["{{baseUrl}}"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"100"},{"key":"visibility","value":"public"},{"key":"language","value":"en-IN"}],"variable":[]}},"response":[],"_postman_id":"6a557ac5-b73a-409d-989e-610c2685332b"},{"name":"Get Newsletter","id":"2b2d2495-5efa-45f4-ac5f-c971327091d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//newsletters?page=1&limit=5&visibility=public&language=en-IN","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","newsletters"],"host":["{{baseUrl}}"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"5"},{"key":"visibility","value":"public"},{"key":"language","value":"en-IN"}],"variable":[]}},"response":[],"_postman_id":"2b2d2495-5efa-45f4-ac5f-c971327091d7"}],"id":"7b154348-c946-42fe-b264-daa2f03e3160","_postman_id":"7b154348-c946-42fe-b264-daa2f03e3160","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"Knowledge Base","item":[{"name":"Add Source","id":"4ca5294b-5146-45d4-9409-35046fd00304","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"docs\",\n    \"options\": {\n        \"urls\": [\n            \"https://ailib-public-50f80e0e.s3.us-east-2.amazonaws.com/corbett/yusuf@gridcare.ai/AIL-GridCARE Services Agreement.pdf\"\n        ]\n    },\n    \"meta\": {\n        \"folder\": \"home\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/knowledgebase/","description":"<p>Add a document to knowledge base</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","knowledgebase",""],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4ca5294b-5146-45d4-9409-35046fd00304"},{"name":"Add Source","id":"b7a4c799-07e2-47db-831c-cc817e4cbde3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"docs\",\n    \"options\": {\n        \"urls\": [\n            \"https://ailib-public-50f80e0e.s3.us-east-2.amazonaws.com/corbett/yusuf@gridcare.ai/AIL-GridCARE Services Agreement.pdf\"\n        ]\n    },\n    \"meta\": {\n        \"folder\": \"test\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//knowledge/sources/add","description":"<p>Add a document to knowledge base</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","knowledge","sources","add"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b7a4c799-07e2-47db-831c-cc817e4cbde3"},{"name":"List Sources","id":"9bfde4ef-b5f9-439d-88e8-db51e10da393","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"delete_connected_resources\": \"true\"\n}"},"url":"{{baseUrl}}/v1/agent//knowledge/sources","description":"<p>List all sources in a knowledge base</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","knowledge","sources"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9bfde4ef-b5f9-439d-88e8-db51e10da393"},{"name":"Source Details","id":"466434cd-9c61-43d1-9efd-cd4acde1b62b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"source\": \"10 June_ 2025 New Burger Singh Co-invest KB.pdf\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//knowledge/sources","description":"<p>Get source details including text</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","knowledge","sources"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"466434cd-9c61-43d1-9efd-cd4acde1b62b"},{"name":"Delete Source","id":"d9db2923-689c-42d9-927d-d49523770125","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"source\": \"AIL-GridCARE Services Agreement.pdf\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//knowledge/sources/delete","description":"<p>Delete sources</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","knowledge","sources","delete"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d9db2923-689c-42d9-927d-d49523770125"}],"id":"f88fc5b4-9200-42ed-bdad-5c74c97cb147","_postman_id":"f88fc5b4-9200-42ed-bdad-5c74c97cb147","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"Batch Extractor","item":[{"name":"New Request","id":"194fb9f9-9456-4635-a260-187c33a05549","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/agent//extract/logs?limit=100","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","extract","logs"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"key":"date_from","value":null},{"disabled":true,"key":"date_till","value":null},{"key":"limit","value":"100"},{"disabled":true,"key":"page","value":null}],"variable":[]}},"response":[],"_postman_id":"194fb9f9-9456-4635-a260-187c33a05549"}],"id":"c0ca0e11-6b8c-4683-b896-73f69dfee162","_postman_id":"c0ca0e11-6b8c-4683-b896-73f69dfee162","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"Terminal","item":[{"name":"Fetch Stories","id":"1380475d-8a10-4774-b34c-3669315bae87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"limit\": 100,\n    \"page\": 1,\n    \"sort_by\": \"\",\n    \"sort_type\": \"DESC\",\n    \"columns\": \"*\",\n    \"filters\": [\n        // {\n        //     \"key\": \"category\",\n        //     \"value\": \"Science\"\n        // },\n        // {\n        //     \"key\": \"subcategory\",\n        //     \"value\": \"Health\"\n        // }\n        {\n            \"key\": \"relevance\",\n            \"value\": \"4\"\n        },\n        {\n            \"key\": \"relevance\",\n            \"value\": \"5\"\n        }\n    ],\n    \"filter_join\": \"OR\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//terminal/stories","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","terminal","stories"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1380475d-8a10-4774-b34c-3669315bae87"}],"id":"fc643ccf-d347-4fa4-a808-0fe9f407f315","_postman_id":"fc643ccf-d347-4fa4-a808-0fe9f407f315","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}}],"id":"76fcffc6-afd0-429d-b308-dc9c4993a9a2","_postman_id":"76fcffc6-afd0-429d-b308-dc9c4993a9a2","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"Utilities","item":[{"name":"Parser","id":"2f252e39-b89f-480c-a16e-8b55434736c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"urls\": [\n\t\t\"https://ailib-public.s3.us-west-2.amazonaws.com/attachments/20251122082442_CAM+Inv+Windsor+HIlls+D2-32+Oct'25-Dec'25.pdf\"\n\t],\n\t\"max_relatedurls\": 0\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/utilities/parser","description":"<p>Parse documents, web pages</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","utilities","parser"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2f252e39-b89f-480c-a16e-8b55434736c1"},{"name":"Web Search","id":"8eccbab1-3a88-4db8-901e-8380040e9fe6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"search_terms\": [\n        \"rahul\"\n    ],\n    \"country\": \"in\",\n    // \"past_days\": 30,\n    \"image_search\": \"true\",\n    \"services\": [\"dekoder\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/utilities/websearch","description":"<p>Search the web</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","utilities","websearch"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8eccbab1-3a88-4db8-901e-8380040e9fe6"},{"name":"Schema Generator","id":"f1a4b54d-bb2f-4990-839c-ac8e3be063d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"content\": \"Please generate a form with the following fields: city (string), developer type (enum with following fields - large, medium, small), \"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/utilities/schema_generator","description":"<p>Generates a valid schema</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","utilities","schema_generator"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f1a4b54d-bb2f-4990-839c-ac8e3be063d1"}],"id":"85e8e78f-ef54-45cd-ba80-c74e25e6e351","description":"<p>Functions to support your AI Agents.</p>\n","_postman_id":"85e8e78f-ef54-45cd-ba80-c74e25e6e351","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"User","item":[{"name":"Get authenticated user","id":"f7bf4936-153a-43ce-923c-f3934011ff72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/me","description":"<p>Gets information about the authenticated user.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["me"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f7bf4936-153a-43ce-923c-f3934011ff72"}],"id":"2af63209-11c2-46d1-9bd7-4aac730e7d33","_postman_id":"2af63209-11c2-46d1-9bd7-4aac730e7d33","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"Files","item":[{"name":"Upload File","id":"a133a8ad-44c8-45ba-ba2a-2c070f94618e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"files","type":"file","uuid":"fc783bbe-98d3-4c07-a333-64da43bdef0e","src":["/Users/aranichaudhuri/Downloads/rebrandestateaiautomationminutesofthemeeting/C_fakepath_WhatsApp Image 2025-04-16 at 8.47.02 AM (1).jpeg","/Users/aranichaudhuri/Downloads/rebrandestateaiautomationminutesofthemeeting/RM2526-0444.pdf","/Users/aranichaudhuri/Downloads/rebrandestateaiautomationminutesofthemeeting/RM2526-0436.pdf","/Users/aranichaudhuri/Downloads/rebrandestateaiautomationminutesofthemeeting/RM2526-0411.pdf","/Users/aranichaudhuri/Downloads/rebrandestateaiautomationminutesofthemeeting/RM2526-0409.pdf","/Users/aranichaudhuri/Downloads/rebrandestateaiautomationminutesofthemeeting/RM2526-0408.pdf"]}]},"url":"{{baseUrl}}/v1/files","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","files"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a133a8ad-44c8-45ba-ba2a-2c070f94618e"},{"name":"List Files","id":"6cf995e6-9369-4d2b-9a8d-9d3d48d4457a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/files?page=1","description":"<p>List all files</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","files"],"host":["{{baseUrl}}"],"query":[{"key":"page","value":"1"}],"variable":[]}},"response":[],"_postman_id":"6cf995e6-9369-4d2b-9a8d-9d3d48d4457a"},{"name":"Retrieve File","id":"d2ef0bba-cdfc-4c80-8e55-d0ef2cf223cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/files/","description":"<p>Retrieve a file</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","files",""],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d2ef0bba-cdfc-4c80-8e55-d0ef2cf223cd"},{"name":"Delete File","id":"3eec55e2-01ef-4ea9-8f01-b81a1bbc05b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{baseUrl}}/v1/files/","description":"<p>Delete a file</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","files",""],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3eec55e2-01ef-4ea9-8f01-b81a1bbc05b2"}],"id":"4a504c5e-fd6c-411b-88e8-b7755f2e33f3","description":"<p>The Files API allows you to upload and manage files that can be processed by knowledge bases.</p>\n","_postman_id":"4a504c5e-fd6c-411b-88e8-b7755f2e33f3","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"Knowledge Base","item":[{"name":"Add to Agent Knowledge","id":"9bc2db53-aa39-4cf6-82b8-7941b2133f95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"docs\",\n    \"options\": {\n        \"urls\": [\n            \"https://timesgrouponline.sharepoint.com/sites/Subbu%27sAgent/_layouts/15/download.aspx?UniqueId=46d5c4ae-fd2c-4505-8977-4e663e3ab5fb&Translate=false&tempauth=v1.eyJzaXRlaWQiOiI0ZTIyNTQyYi00NThkLTRiYTctYTViMS05NTBhNTVjNzdiYTEiLCJhcHBfZGlzcGxheW5hbWUiOiJmaW5hbmNlLWFnZW50IiwibmFtZWlkIjoiNmVjMzIwYjktYjc2Ny00NzFiLTg0YzMtZTY4OTdlZTVkMDdhQDMxMTcxZGQ3LWZjMDEtNDA5MC1hODUxLTdmMWJiY2Q3ZTA0OCIsImF1ZCI6IjAwMDAwMDAzLTAwMDAtMGZmMS1jZTAwLTAwMDAwMDAwMDAwMC90aW1lc2dyb3Vwb25saW5lLnNoYXJlcG9pbnQuY29tQDMxMTcxZGQ3LWZjMDEtNDA5MC1hODUxLTdmMWJiY2Q3ZTA0OCIsImV4cCI6IjE3Njc4NjAyMDcifQ.CkAKDGVudHJhX2NsYWltcxIwQ0lhZC9jb0dFQUFhRm5GTlVIWlVVbFZqYkZWWE1IRm1ZekZpVXpWYVFVRXFBQT09CjIKCmFjdG9yYXBwaWQSJDAwMDAwMDAzLTAwMDAtMDAwMC1jMDAwLTAwMDAwMDAwMDAwMAoKCgRzbmlkEgI2NBILCNqTl7P9o-c-EAUaDTIwLjE5MC4xNzUuMjQqLHlDaEpOS3ZzcmNNc3N3WCt5WTJCTHc4TTEwbEtvMk9HcUJRQVlLdkFPbEE9MJIBOAFCEKHq6j6coABgXtkfYrtQaFxKEGhhc2hlZHByb29mdG9rZW56ATG6ARthbGxzaXRlcy5yZWFkIGFsbGZpbGVzLnJlYWTIAQE.dSbT_ksvxmK2WURGjF_E0Zv5XiNzmUh9HMTUmrJ6JoM&ApiVersion=2.0\"\n        ]\n    },\n    \"meta\": {\n        \"folder\": \"subbu\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//knowledge/sources/add","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","knowledge","sources","add"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9bc2db53-aa39-4cf6-82b8-7941b2133f95"},{"name":"Search Agent Knowledge","id":"069fe99d-17a5-4a81-aeb8-4b5b8aa00445","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"search_term\": \"latest on Enterprise AI\",\n    \"filters\": {\n        \"type\": \"and\",\n        \"values\": [\n            {\n                \"key\": \"meta.folder\",\n                \"value\": \"36OOne\"\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//knowledge/search","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","knowledge","search"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"069fe99d-17a5-4a81-aeb8-4b5b8aa00445"},{"name":"Search by Knowledge ID","id":"23d8c250-697d-4dc3-996d-47f33a14610a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"search_term\": \"What's the target price of delhivery according to goldman sach\",\n    // \"knowledgeId\": [\n    //     \"_1752233292757599\"\n    // ],\n    \"filters\": {\n        \"type\": \"and\",\n        \"values\": [\n            {\n                \"key\": \"source\",\n                \"value\": \"Delhivery Ltd. - Goldman Sache.pdf\"\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1//knowledgebase/search","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","","knowledgebase","search"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"23d8c250-697d-4dc3-996d-47f33a14610a"},{"name":"List Sources","id":"7d5c2dc2-0336-4bea-8b2c-14392ad67bea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/agent//knowledge/sources","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","knowledge","sources"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7d5c2dc2-0336-4bea-8b2c-14392ad67bea"},{"name":"Source Details","id":"6dc6fade-2523-4efe-9927-e2db711b4b13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"source\": \"YugDengre2506.pdf\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//knowledge/sources","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","knowledge","sources"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6dc6fade-2523-4efe-9927-e2db711b4b13"},{"name":"Delete Sources","id":"5a5fd9ca-4315-4fc2-8da6-0fd02e3c7eb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"source\": \"YugDengre2506.pdf\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//knowledge/sources","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","knowledge","sources"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5a5fd9ca-4315-4fc2-8da6-0fd02e3c7eb0"}],"id":"c93f0fa4-3183-4ad8-900f-16277e91b255","_postman_id":"c93f0fa4-3183-4ad8-900f-16277e91b255","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"Notes","item":[{"name":"Create Note","id":"7807e4e2-4a16-4531-b621-0037f9693a99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"role\": \"user\",\n    \"resource\": \"agent\",\n    \"resource_id\": \"\",\n    \"content\": \"https://ailib-public-b821c003.s3.ap-south-1.amazonaws.com/corbett/arani@ailibrary.ai/01X45PHR3LMF2MLSWNF5DZVY4YECYWSFA2-2026-01-27T06-57-33Z.txt\",\n    \"meta\": {}\n    \n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/notes","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","notes"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7807e4e2-4a16-4531-b621-0037f9693a99"},{"name":"List Notes","id":"3bff65c9-5177-4eda-9c54-b6c6d4c96fa8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/notes/{{resource}}/{{resource_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","notes","{{resource}}","{{resource_id}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3bff65c9-5177-4eda-9c54-b6c6d4c96fa8"},{"name":"Note Details","id":"a38ee1ca-49c8-4cf8-9752-9970549ae3fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/notes/{{noteId}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","notes","{{noteId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a38ee1ca-49c8-4cf8-9752-9970549ae3fa"},{"name":"Update Note","id":"220926a4-cc14-4880-b549-39f578dbae1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"content\": \"x\",\n\t\"role\": \"user\",\n\t\"meta\": {\"id\": 4, \"type\": \"ice cream\"}\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/notes/{{note_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","notes","{{note_id}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"220926a4-cc14-4880-b549-39f578dbae1c"},{"name":"Delete Note","id":"a9035522-5eeb-4661-8063-566059506af5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{baseUrl}}/v1/notes/{{note_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","notes","{{note_id}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a9035522-5eeb-4661-8063-566059506af5"}],"id":"7ae66f67-9acc-4786-a823-6180ce266613","_postman_id":"7ae66f67-9acc-4786-a823-6180ce266613","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"Contacts","item":[{"name":"List Contacts","id":"e30bea25-8a5b-4ba5-9c26-890625d316f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/agent//contacts","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","contacts"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e30bea25-8a5b-4ba5-9c26-890625d316f4"},{"name":"Add Contact","id":"72fb8ee0-52ed-489f-8cd2-a0500b41f38f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"name\": \"Arani Chaudhuri\",\n        \"phone\": \"+919818991548\",\n        \"email\": \"arani@ailibrary.ai\",\n        \"city\": \"San Francisco\",\n        \"subscriptions\": [\n            {\n                \"id\": \"top5\",\n                \"status\": \"subscribed\"\n            },\n            {\n                \"id\": \"frontpages\",\n                \"status\": \"subscribed\"\n            }\n        ]\n    }\n    // ... more contacts\n]","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//contacts","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","contacts"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"72fb8ee0-52ed-489f-8cd2-a0500b41f38f"},{"name":"Check Contacts","id":"36b14d5d-9535-49e1-9827-8b84ee21a5f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"id\": \"1001\",\n    // \"phone\": \"+919818991548\",\n    \"email\": \"arani@ailibrary.ai\"\n  }\n  // ... more contacts\n]","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//contacts/check","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","contacts","check"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"36b14d5d-9535-49e1-9827-8b84ee21a5f7"},{"name":"Contact Details","id":"f2baebf0-cca5-49ab-82ec-628c90d0ebb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/agent//contacts/{{contact_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","contacts","{{contact_id}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f2baebf0-cca5-49ab-82ec-628c90d0ebb0"},{"name":"Delete Contact","id":"1744b958-9008-47c9-a317-9dd38c8b3825","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{baseUrl}}/v1/agent//contacts/{{contact_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","contacts","{{contact_id}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1744b958-9008-47c9-a317-9dd38c8b3825"},{"name":"Update Contact","id":"faeff8f1-3f7a-424f-876a-7e3e1977fea3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"phone\": \"+919818991549\",\n    \"subscriptions\": [\n        {\n            \"id\": \"top5\",\n            \"status\": \"subscribed\"\n        },\n        {\n            \"id\": \"frontpages\",\n            \"status\": \"unsubscribed\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/agent//contacts/{{contact_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","contacts","{{contact_id}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"faeff8f1-3f7a-424f-876a-7e3e1977fea3"}],"id":"a0ecf67c-8c6d-4777-bbc9-bc4cc229a34d","_postman_id":"a0ecf67c-8c6d-4777-bbc9-bc4cc229a34d","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"Integrations","item":[{"name":"Email","item":[{"name":"Get Integration Details by Email","id":"23a5725c-b2f9-4b8c-bd25-805f4e0e2e4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"{{baseUrl}}/v1/integrations/email/{{email}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","integrations","email","{{email}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"23a5725c-b2f9-4b8c-bd25-805f4e0e2e4c"}],"id":"c543bbd0-5a02-49c5-9123-7aede812e731","_postman_id":"c543bbd0-5a02-49c5-9123-7aede812e731","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"Get Integrations by Namespace","id":"1a1707e9-c58f-424c-a611-fe5c43160920","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"search_terms\": [\n        \"rahul\"\n    ],\n    \"country\": \"in\",\n    \"past_days\": 30,\n    \"image_search\": \"true\",\n    \"services\": [\"dekoder\"]\n}"},"url":"{{baseUrl}}/v1/agent//integrations","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","agent","","integrations"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1a1707e9-c58f-424c-a611-fe5c43160920"}],"id":"3ed8f09d-bd6c-4bf1-bd4a-2f1c253d6730","_postman_id":"3ed8f09d-bd6c-4bf1-bd4a-2f1c253d6730","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}},{"name":"Forms","item":[{"name":"List Forms","id":"7c411cac-be48-4ca8-b0ac-b359cb33306f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/form","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","form"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7c411cac-be48-4ca8-b0ac-b359cb33306f"},{"name":"Create Form","id":"37a53303-fd0f-4e38-956e-efccad4d39f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"Language translations\",\n    \"schema\": {\n        \"translations\": {\n            \"type\": \"array\",\n            \"description\": \"Array of translation results, one per input item\",\n            \"items\": {\n                \"type\": \"object\",\n                \"properties\": {\n                    \"rowId\": {\n                        \"type\": \"string\",\n                        \"description\": \"The original rowId from the input\"\n                    },\n                    \"language\": {\n                        \"type\": \"string\",\n                        \"enum\": [\n                            \"hindi\",\n                            \"bengali\",\n                            \"malayalam\",\n                            \"tamil\",\n                            \"telugu\",\n                            \"kannada\",\n                            \"marathi\",\n                            \"punjabi\",\n                            \"gujarati\",\n                            \"bahasa\"\n                        ]\n                    },\n                    \"transliteratedTitle\": {\n                        \"type\": \"string\",\n                        \"description\": \"The title phonetically written in the target language script\"\n                    },\n                    \"translatedDescription\": {\n                        \"type\": \"string\",\n                        \"description\": \"The description fully translated into the target language\"\n                    }\n                },\n                \"required\": [\n                    \"rowId\",\n                    \"language\",\n                    \"transliteratedTitle\",\n                    \"translatedDescription\"\n                ]\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/form","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","form"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"37a53303-fd0f-4e38-956e-efccad4d39f3"},{"name":"Form Details","id":"400abfc4-cb90-43c5-bd3b-813ba16a5a97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/v1/form/{{form_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","form","{{form_id}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"400abfc4-cb90-43c5-bd3b-813ba16a5a97"},{"name":"Update Form","id":"4419500f-5ea1-4d3b-9e43-56ed7fc6a241","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"Language translations\",\n    \"schema\": {\n        \"translations\": {\n            \"type\": \"array\",\n            \"description\": \"Array of translation results, one per input item\",\n            \"items\": {\n                \"type\": \"object\",\n                \"properties\": {\n                    \"rowId\": {\n                        \"type\": \"string\",\n                        \"description\": \"The original rowId from the input\"\n                    },\n                    \"language\": {\n                        \"type\": \"string\",\n                        \"enum\": [\n                            \"hindi\",\n                            \"bengali\",\n                            \"malayalam\",\n                            \"tamil\",\n                            \"telugu\",\n                            \"kannada\",\n                            \"marathi\",\n                            \"punjabi\",\n                            \"gujarati\",\n                            \"bahasa\"\n                        ]\n                    },\n                    \"transliteratedTitle\": {\n                        \"type\": \"string\",\n                        \"description\": \"The title phonetically written in the target language script\"\n                    },\n                    \"translatedDescription\": {\n                        \"type\": \"string\",\n                        \"description\": \"The description fully translated into the target language\"\n                    }\n                },\n                \"additionalProperties\": false,\n                \"required\": [\n                    \"rowId\",\n                    \"language\",\n                    \"transliteratedTitle\",\n                    \"translatedDescription\"\n                ]\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/v1/form/{{form_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}},"urlObject":{"path":["v1","form","{{form_id}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4419500f-5ea1-4d3b-9e43-56ed7fc6a241"}],"id":"4f58b1c1-eda9-4e98-bab6-931cbb174550","_postman_id":"4f58b1c1-eda9-4e98-bab6-931cbb174550","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]},"isInherited":true,"source":{"_postman_id":"fd87cb70-2941-4308-8fd9-6983161d8225","id":"fd87cb70-2941-4308-8fd9-6983161d8225","name":"API Documentation","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Library-Key"},{"key":"value","value":"{{X-Library-Key}}"}]}},"event":[{"listen":"prerequest","script":{"id":"f9e0117c-5ce7-4b86-bc2e-dc56f559f2ac","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c07b1ea4-aed4-47b7-a5a7-245e4ff62c47","type":"text/javascript","exec":[""]}}],"variable":[{"key":"namespace","value":""},{"key":"fileId","value":"","type":"default"},{"key":"knowledgeId","value":"","type":"default"},{"key":"source","value":"","type":"default"}]}