{"info":{"_postman_id":"4bbc8345-455f-4dfa-956f-da6454464f0a","name":"API documentation","description":"<html><head></head><body><h2 id=\"📄-get-started-with-tiny1z-api-integration\">📄 <strong>Get started with Tiny1z API Integration</strong></h2>\n<p>Welcome to Tiny1z API Integration, a powerful tool that allows you to seamlessly integrate Tiny1z features into your applications. Whether you're looking to shorten URLs, track analytics, or enhance user experiences, Tiny1z API Integration has got you covered.</p>\n<h2 id=\"🚀-getting-started-guide\">🚀 <strong>Getting Started Guide</strong></h2>\n<p>To start using Tiny1z API Integration, follow these simple steps:</p>\n<ol>\n<li><p><strong>Obtain an API Key:</strong></p>\n<ul>\n<li><p>Sign up for a Tiny1z account at <a href=\"https://tiny1z.com/signup\">https://tiny1z.com/signup</a>.</p>\n</li>\n<li><p>Access your \"API key\" from the Tiny1z developer dashboard.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>API Requests:</strong></p>\n<ul>\n<li><p>All requests must be made over HTTPS for security.</p>\n</li>\n<li><p>Include your API key in the request <code>Authorization</code> header.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Response Format:</strong></p>\n<ul>\n<li><p>API responses are in JSON format.</p>\n</li>\n<li><p>Error responses include an <code>error</code> key in the JSON response.</p>\n</li>\n</ul>\n</li>\n</ol>\n<h2 id=\"〽️-quota-response-headers\">〽️ <strong>Quota Response Headers</strong></h2>\n<p>With each successful response you will get the following headers to keep track of your API quota:</p>\n<ul>\n<li><p><code>X-used-api-quota</code>: The consumed amount of your quota so far.</p>\n</li>\n<li><p><code>X-max-api-quota</code>: The total amount of your quota.</p>\n</li>\n<li><p><code>X-remaining-api-quota:</code> The remaining quota available for use.</p>\n</li>\n</ul>\n<h2 id=\"⚠️-rate-limits\">⚠️ Rate Limits</h2>\n<p>Short URL creation APIs have a rate limit of 100 requests per minute. The response headers below are provided to monitor usage limits:</p>\n<ul>\n<li><p><code>X-RateLimit-Limit</code>: Indicates the current rate limit set.</p>\n</li>\n<li><p><code>X-RateLimit-Remaining</code>: Displays the remaining rate limit quota available.</p>\n</li>\n</ul>\n<p>** Rate limits only apply to POST requests. GET Requests are not rate limited.</p>\n<p>Explore our documentation, code examples, and other resources to make the most out of Tiny1z API Integration. Happy integrating! 🌐✨</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"24143355","collectionId":"4bbc8345-455f-4dfa-956f-da6454464f0a","publishedId":"2sA2xb5atb","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"E77728"},"publishDate":"2025-09-11T12:49:30.000Z"},"item":[{"name":"Create a short URL","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"a08f2bec-5c9a-4cda-a4a5-5a1ad60c4e6c"}}],"id":"cb55b96c-5193-4e6a-85bc-2055959be597","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"your-api-key","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"original_url\": \"string\",\r\n    \"alias\": \"string\",\r\n    \"password\": \"string\",\r\n    \"expiry_duration\": \"decimal (9,2)\",\r\n    \"expiry_unit\": \"string - accepts: 'hours', 'days' or 'months'\",\r\n    \"user_reference\": \"string - any tag like a user_id or anything you wish to label this url with\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://tiny1z.com/api/v1/create","description":"<p>Create a short URL using the Tiny1z API. Ensure that you set the <code>Content-Type</code> header to <code>application/json</code> in your request.</p>\n<h2 id=\"request-parameters\">Request Parameters</h2>\n<ul>\n<li><p><code>original_url (required) (String) :</code> The original URL that you want to.</p>\n</li>\n<li><p><code>alias (String):</code> An optional custom alias for the short.</p>\n</li>\n<li><p><code>password (String):</code> An optional password to access the short.</p>\n</li>\n<li><p><code>expiry_duration (Number):</code> The duration for which the short URL will be valid. Should be a number (e.g. 3).</p>\n</li>\n<li><p><code>expiry_unit (String):</code> The unit of time for the duration. Accepts: 'hours', 'days', or 'months'.</p>\n</li>\n<li><p><code>user_reference (String):</code> Any tag like a user_id or anything you wish to label this url with.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","create"],"host":["tiny1z","com"],"query":[],"variable":[]}},"response":[{"id":"3c102af7-4268-499a-b96c-03076af80934","name":"Successful Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"your-api-key","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"original_url\": \"https://www.example.com\",\r\n    \"alias\": \"alias-example\",\r\n    \"password\": \"123456\",\r\n    \"expiry_duration\": 5,\r\n    \"expiry_unit\": \"hours\",\r\n    \"user_reference\": \"adam\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://tiny1z.com/api/v1/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":{"content":"","type":"text/plain"}}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"data\": {\n        \"short_url\": \"https://t1z.co/alias-example\",\n        \"alias\": \"alias-example\",\n        \"original_url\": \"https://www.example.com\",\n        \"created_at\": 1273681723,\n        \"password_protection\": true,\n        \"expiry_enabled\": true,\n        \"expires_in\": \"5 hours\",\n        \"expiry_timestamp\": 2183792183,\n        \"user_reference\": \"adam\"\n    }\n}"},{"id":"8a3d6980-9fab-4d43-b1de-7d9e747586db","name":"Successful Response (No password or expiry)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"your-api-key","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"original_url\": \"https://www.example.com\",\r\n    \"alias\": \"alias-example\",\r\n    \"password\": null,\r\n    \"expiry_duration\": null,\r\n    \"expiry_unit\": null,\r\n    \"user_reference\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"https://tiny1z.com/api/v1/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":{"content":"","type":"text/plain"}}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"data\": {\n        \"short_url\": \"https://t1z.co/alias-example\",\n        \"alias\": \"alias-example\",\n        \"original_url\": \"https://www.example.com\",\n        \"created_at\": 1273681723,\n        \"password_protection\": false,\n        \"expiry_enabled\": false,\n        \"expires_in\": \"never\",\n        \"expiry_timestamp\": null,\n        \"user_reference\": null\n    }\n}"},{"id":"4c588936-fc63-4b01-83b1-56997a2ddc35","name":"Error response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"your-api-key","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"original_url\": \"bad_url_example\",\r\n    \"alias\": \"alias-example\",\r\n    \"password\": null,\r\n    \"expiry_duration\": null,\r\n    \"expiry_unit\": null,\r\n    \"user_reference\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"https://tiny1z.com/api/v1/create"},"status":"Bad Request","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":{"content":"","type":"text/plain"}}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": false,\n    \"message\": \"Invalid original_url 'bad_url_example'. String must be a valid URL. https://t1z.co/tiny1z-api\"\n}"}],"_postman_id":"cb55b96c-5193-4e6a-85bc-2055959be597"},{"name":"Bulk Create short URLs","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"bbed1629-59ec-48f3-935a-877fe630e7ed"}}],"id":"8fe29c33-2b32-4e19-b87a-9b370762de7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"your-api-key","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"original_urls\": [\r\n        {\r\n            \"url\": \"string\",\r\n            \"password\": \"string or null\",\r\n            \"expiry_duration\": \"decimal (9,2)\",\r\n            \"expiry_unit\": \"string - accepts: 'hours', 'days' or 'months'\"\r\n        }\r\n    ],\r\n    \"global_password\": \"string or null\",\r\n    \"global_expiry_duration\": \"decimal (9,2)\",\r\n    \"global_expiry_unit\": \"string - accepts: 'hours', 'days' or 'months'\",\r\n    \"user_reference\": \"string - any tag like a user_id or anything you wish to label this url with\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://tiny1z.com/api/v1/create/bulk","description":"<p>Create short URLs in bulk using the Tiny1z API. Ensure that you set the <code>Content-Type</code> header to <code>application/json</code> in your request.</p>\n<h2 id=\"request-parameters\">Request Parameters</h2>\n<p><em>* Parameters markerd with (\\</em>) are required.</p>\n<p>-- <code>original_urls</code>(*)<code>(Array):</code> An array of objects, each containing the details of an original url as follows:</p>\n<ul>\n<li><code>url</code> (*) <code>(String):</code> The original URL that you want to.</li>\n<li><code>alias (String):</code> Any custom alias you would like to use as the short url slug.</li>\n<li><code>password (String or Null):</code> An optional password to access the short URL. Can be a string or null.</li>\n<li><code>expiry_duration (Decimal):</code> The duration for which the short URL will be valid. Should be a decimal number (e.g., 3.5).</li>\n<li><code>expiry_unit (String):</code> The unit of time for the duration. Accepts: 'hours', 'days', or 'months'.</li>\n</ul>\n<p>-- <code>global_password (String or Null):</code> An optional global password to access all short URLs. Can be a string or null.</p>\n<p>-- <code>global_expiry_duration (Decimal):</code> The global duration for which short URLs will be valid. Should be a decimal number (e.g., 3.5).</p>\n<p>-- <code>global_expiry_unit (String):</code> The unit of time for the global duration. Accepts: 'hours', 'days', or 'months'.</p>\n<p>-- <code>user_reference (String):</code> Any tag like a user_id or anything you wish to label this url with.</p>\n<h2 id=\"⚠️-attention\">⚠️ ATTENTION:</h2>\n<p>When including a URL in the <code>'original_urls'</code> array, any values provided for <code>'global_password,' 'global_expiry_duration,' and 'global_expiry_unit'</code> will be overridden by specific values for <code>'password,' 'expiry_duration,' and 'expiry_unit'</code> for that URL. Ensure that you set the parameters appropriately at both the global and individual URL levels to achieve the desired settings.</p>\n","urlObject":{"protocol":"https","path":["api","v1","create","bulk"],"host":["tiny1z","com"],"query":[],"variable":[]}},"response":[{"id":"7877a196-df28-40fc-a452-6b27afea8dc1","name":"Successful Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"your-api-key","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"original_urls\": [\r\n        {\r\n            \"url\": \"https://www.example.com\",\r\n            \"alias\": \"alias-example\",\r\n            \"password\": \"123456\",\r\n            \"expiry_duration\": 5,\r\n            \"expiry_unit\": \"hours\"\r\n        },\r\n        {\r\n            \"url\": \"https://www.example.com\"\r\n        }\r\n    ],\r\n    \"global_password\": null,\r\n    \"global_expiry_duration\": null,\r\n    \"global_expiry_unit\": null,\r\n    \"user_reference\": \"ali\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://tiny1z.com/api/v1/create/bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":{"content":"","type":"text/plain"}}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"user_reference\": \"ali\",\n    \"data\": {\n        \"urls\": [\n            {\n                \"short_url\": \"https://t1z.co/alias-example\",\n                \"alias\": \"alias-example\",\n                \"original_url\": \"https://www.example.com\",\n                \"created_at\": 1273681723,\n                \"password_protection\": true,\n                \"expiry_enabled\": true,\n                \"expires_in\": \"5 hours\",\n                \"expiry_timestamp\": 2183792183\n            },\n            {\n                \"short_url\": \"https://t1z.co/aUa82d\",\n                \"alias\": \"aUa82d\",\n                \"original_url\": \"https://www.example.com\",\n                \"created_at\": 1273681723,\n                \"password_protection\": false,\n                \"expiry_enabled\": false,\n                \"expires_in\": \"never\",\n                \"expiry_timestamp\": null\n            }\n        ]\n    }\n}"},{"id":"fd18a587-5ce3-4b91-974a-0b45c67c4276","name":"Error response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"your-api-key","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"original_urls\": [\r\n        {\r\n            \"url\": \"bad_url_example\",\r\n            \"password\": \"123456\",\r\n            \"expiry_duration\": 5,\r\n            \"expiry_unit\": \"hours\"\r\n        }\r\n    ],\r\n    \"global_password\": null,\r\n    \"global_expiry_duration\": null,\r\n    \"global_expiry_unit\": null,\r\n    \"user_reference\": \"ali\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://tiny1z.com/api/v1/create/bulk"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":{"content":"","type":"text/plain"}}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": false,\n    \"message\": \"original_url index 0 is invalid 'bad_url_example'. URL string must be a valid URL. https://t1z.co/tiny1z-api\"\n}"}],"_postman_id":"8fe29c33-2b32-4e19-b87a-9b370762de7c"},{"name":"Get User URLs","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"1055815b-2746-4acc-b166-3a07f31c14d6"}}],"id":"452eef60-36fd-4a7c-a578-d6deee69a3ab","protocolProfileBehavior":{"disabledSystemHeaders":{},"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"your-api-key","type":"text"}],"url":"https://tiny1z.com/api/v1/user?reference=user_reference","description":"<p>Get user's created URLs by user_reference.</p>\n<h2 id=\"get-parameters\">GET Parameters</h2>\n<ul>\n<li><code>reference (required):</code> the <code>user_reference</code> that is referenced when creating the url.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","user"],"host":["tiny1z","com"],"query":[{"key":"reference","value":"user_reference"}],"variable":[]}},"response":[{"id":"f2da5b84-298b-4c0b-bfaa-f0abc6ce3a84","name":"Successful Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"your-api-key","type":"text"}],"url":{"raw":"https://tiny1z.com/api/v1/user?reference=ali","protocol":"https","host":["tiny1z","com"],"path":["api","v1","user"],"query":[{"key":"reference","value":"ali"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":{"content":"","type":"text/plain"}}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"user_reference\": \"ali\",\n    \"urls\": [\n        {\n            \"short_url\": \"https://t1z.co/alias-example\",\n            \"alias\": \"alias-example\",\n            \"original_url\": \"https://www.example.com\",\n            \"created_at\": 1273681723,\n            \"password_protection\": true,\n            \"expiry_enabled\": true,\n            \"expires_in\": \"5 hours\",\n            \"expiry_timestamp\": 2183792183\n        },\n        {\n            \"short_url\": \"https://t1z.co/alias-example\",\n            \"alias\": null,\n            \"original_url\": \"https://www.example.com\",\n            \"created_at\": 1273681723,\n            \"password_protection\": false,\n            \"expiry_enabled\": false,\n            \"expires_in\": \"never\",\n            \"expiry_timestamp\": null\n        }\n    ]\n}"},{"id":"bc07e321-ec7c-40c6-a837-7e7f5f2df528","name":"Error response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"your-api-key","type":"text"}],"url":{"raw":"https://tiny1z.com/api/v1/user?reference=ali","protocol":"https","host":["tiny1z","com"],"path":["api","v1","user"],"query":[{"key":"reference","value":"ali"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":{"content":"","type":"text/plain"}}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": false,\n    \"message\": \"Unable to fetch user_reference urls. If the issue presists please contact us at https://tiny1z.com/support\"\n}"}],"_postman_id":"452eef60-36fd-4a7c-a578-d6deee69a3ab"},{"name":"Get Single URL Info","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"10e7f34b-3b79-4118-9f1a-766fda35152d"}}],"id":"f0cf3c3e-a52c-4010-8da7-a7e5cd48e43b","protocolProfileBehavior":{"disabledSystemHeaders":{},"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"your-api-key","type":"text"}],"url":"https://tiny1z.com/api/v1/user?slug=short_url","description":"<p>Get the info of a single URL by url slug.</p>\n<h2 id=\"get-parameters\">GET Parameters</h2>\n<ul>\n<li><code>slug (required):</code> the slug/alias of the short url you are trying to fetch.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","user"],"host":["tiny1z","com"],"query":[{"key":"slug","value":"short_url"}],"variable":[]}},"response":[{"id":"fda97254-f7c6-4131-ba1e-8b6f4f0df0dc","name":"Successful Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"your-api-key","type":"text"}],"url":{"raw":"https://tiny1z.com/api/v1/user?slug=alias-example","protocol":"https","host":["tiny1z","com"],"path":["api","v1","user"],"query":[{"key":"slug","value":"alias-example"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":{"content":"","type":"text/plain"}}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"user_reference\": \"ali\",\n    \"short_url\": \"https://t1z.co/alias-example\",\n    \"alias\": \"alias-example\",\n    \"original_url\": \"https://www.example.com\",\n    \"created_at\": 1273681723,\n    \"password_protection\": true,\n    \"expiry_enabled\": true,\n    \"expires_in\": \"5 hours\",\n    \"expiry_timestamp\": 2183792183\n}"},{"id":"275d9e9c-2b74-4511-88f3-b69908cda4d5","name":"Error response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"your-api-key","type":"text"}],"url":{"raw":"https://tiny1z.com/api/v1/user?slug=abcd","protocol":"https","host":["tiny1z","com"],"path":["api","v1","user"],"query":[{"key":"slug","value":"abcd"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":{"content":"","type":"text/plain"}}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": false,\n    \"message\": \"URL with slug 'abcd' not found. For more info https://t1z.co/tiny1z-api\"\n}"}],"_postman_id":"f0cf3c3e-a52c-4010-8da7-a7e5cd48e43b"},{"name":"Get All URLs","event":[{"listen":"test","script":{"id":"c95142f2-6685-4578-a4fb-e9b95689bc48","exec":[""],"type":"text/javascript"}}],"id":"71ab9fd0-1475-4c97-bc6f-29203815bd10","protocolProfileBehavior":{"disabledSystemHeaders":{},"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"your-api-key","type":"text"}],"url":"https://tiny1z.com/api/v1/user/all?offset=fetch offset&limit=fetch limit&sort=desc or asc","description":"<p>Get all your created API URLs.</p>\n<h2 id=\"get-parameters\">GET Parameters</h2>\n<ul>\n<li><code>offset (required, number):</code> The starting index from which the data should be fetched.</li>\n<li><code>limit (required, number):</code> The maximum number of rows to be fetched.</li>\n<li><code>sort (required, string):</code> The sorting method for the fetch operation. Accepts only 'desc', 'asc', 'DESC', or 'ASC'.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","user","all"],"host":["tiny1z","com"],"query":[{"key":"offset","value":"fetch offset"},{"key":"limit","value":"fetch limit"},{"key":"sort","value":"desc or asc"}],"variable":[]}},"response":[{"id":"beb26550-def7-4180-b89e-6be0e091b957","name":"Successful Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"your-api-key","type":"text"}],"url":{"raw":"https://tiny1z.com/api/v1/user/all?offset=0&limit=24&sort=desc","protocol":"https","host":["tiny1z","com"],"path":["api","v1","user","all"],"query":[{"key":"offset","value":"0"},{"key":"limit","value":"24"},{"key":"sort","value":"desc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":{"content":"","type":"text/plain"}}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"total_count\": 2,\n    \"fetched_count\": 2,\n    \"offset\": 0,\n    \"limit\": 24,\n    \"urls\": [\n        {\n            \"user_reference\": \"ali\",\n            \"short_url\": \"https://t1z.co/alias-example\",\n            \"alias\": \"alias-example\",\n            \"original_url\": \"https://www.example.com\",\n            \"created_at\": 1273681723,\n            \"password_protection\": true,\n            \"expiry_enabled\": true,\n            \"expires_in\": \"5 hours\",\n            \"expiry_timestamp\": 2183792183\n        },\n        {\n            \"user_reference\": \"ali\",\n            \"short_url\": \"https://t1z.co/alias-example\",\n            \"alias\": null,\n            \"original_url\": \"https://www.example.com\",\n            \"created_at\": 1273681723,\n            \"password_protection\": false,\n            \"expiry_enabled\": false,\n            \"expires_in\": \"never\",\n            \"expiry_timestamp\": null\n        }\n    ]\n}"},{"id":"986e562e-2a98-42f1-8d22-cdfe9a19d545","name":"Error response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"your-api-key","type":"text"}],"url":{"raw":"https://tiny1z.com/api/v1/user/all?offset=0&limit=24&sort=desc","protocol":"https","host":["tiny1z","com"],"path":["api","v1","user","all"],"query":[{"key":"offset","value":"0"},{"key":"limit","value":"24"},{"key":"sort","value":"desc"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":{"content":"","type":"text/plain"}}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": false,\n    \"message\": \"Invalid API key. For more info https://t1z.co/tiny1z-api\"\n}"}],"_postman_id":"71ab9fd0-1475-4c97-bc6f-29203815bd10"}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"2c47ea0a-9aa7-4334-9bcd-fe14e8e39039"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"7037bdbd-3b36-4dc9-95b2-d280d94e1c17"}}],"variable":[{"key":"baseUrl","value":"https://farming-simulator.pstmn.io"}]}