{"info":{"name":"Wabiss API","description":"Full API collection for Wabiss (/api/v1). Import into Postman and set base_url/api_key variables.","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"Messaging","item":[{"name":"Send Text","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{base_url}}/api/v1/send/text","body":{"mode":"raw","raw":"{\n  \"to\": \"919876543210\",\n  \"message\": \"Hello from Postman collection\"\n}","options":{"raw":{"language":"json"}}}}},{"name":"Send Image","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{base_url}}/api/v1/send/image","body":{"mode":"raw","raw":"{\n  \"to\": \"919876543210\",\n  \"url\": \"https://example.com/image.jpg\",\n  \"caption\": \"Sample image\"\n}","options":{"raw":{"language":"json"}}}}},{"name":"Send Document","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{base_url}}/api/v1/send/document","body":{"mode":"raw","raw":"{\n  \"to\": \"919876543210\",\n  \"url\": \"https://example.com/file.pdf\",\n  \"caption\": \"Sample document\"\n}","options":{"raw":{"language":"json"}}}}},{"name":"Send Audio","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{base_url}}/api/v1/send/audio","body":{"mode":"raw","raw":"{\n  \"to\": \"919876543210\",\n  \"url\": \"https://example.com/audio.mp3\"\n}","options":{"raw":{"language":"json"}}}}},{"name":"Send Location","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{base_url}}/api/v1/send/location","body":{"mode":"raw","raw":"{\n  \"to\": \"919876543210\",\n  \"latitude\": 12.9716,\n  \"longitude\": 77.5946,\n  \"name\": \"Bengaluru\"\n}","options":{"raw":{"language":"json"}}}}},{"name":"Send Buttons","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{base_url}}/api/v1/send/buttons","body":{"mode":"raw","raw":"{\n  \"to\": \"919876543210\",\n  \"message\": \"Choose one option\",\n  \"buttons\": [\n    {\n      \"body\": \"Yes\"\n    },\n    {\n      \"body\": \"No\"\n    }\n  ],\n  \"title\": \"Confirmation\",\n  \"footer\": \"Reply now\"\n}","options":{"raw":{"language":"json"}}}}},{"name":"Send List","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{base_url}}/api/v1/send/list","body":{"mode":"raw","raw":"{\n  \"to\": \"919876543210\",\n  \"message\": \"Choose your plan\",\n  \"buttonText\": \"View plans\",\n  \"sections\": [\n    {\n      \"title\": \"Plans\",\n      \"rows\": [\n        {\n          \"id\": \"starter\",\n          \"title\": \"Starter\",\n          \"description\": \"500 credits\"\n        },\n        {\n          \"id\": \"pro\",\n          \"title\": \"Pro\",\n          \"description\": \"2000 credits\"\n        }\n      ]\n    }\n  ]\n}","options":{"raw":{"language":"json"}}}}},{"name":"Send Bulk","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{base_url}}/api/v1/send/bulk","body":{"mode":"raw","raw":"{\n  \"numbers\": [\n    \"919876543210\",\n    \"919999999999\"\n  ],\n  \"message\": \"Bulk campaign message\"\n}","options":{"raw":{"language":"json"}}}}}]}],"variable":[{"key":"base_url","value":"https://app.wabiss.com"},{"key":"api_key","value":"wa_your_api_key_here"}]}