{"id":661,"date":"2021-08-04T14:28:56","date_gmt":"2021-08-04T14:28:56","guid":{"rendered":"http:\/\/5centscdn.net\/help-new\/?p=661"},"modified":"2026-03-12T17:54:39","modified_gmt":"2026-03-12T17:54:39","slug":"how-to-use-openstack-swift-api","status":"publish","type":"post","link":"https:\/\/www.5centscdn.net\/help\/how-to-use-openstack-swift-api\/","title":{"rendered":"How to use OpenStack Swift API?"},"content":{"rendered":"<p>The <strong>OpenStack Swift API<\/strong> is fully supported by 5centsCDN for efficient cloud storage management. To quickly set up and utilize this API, follow the steps provided below and start exploring its extensive features:<\/p>\n<ul>\n<li>The first step is to\u00a0prepare the environment to use the OpenStack<span class=\"widont\">\u00a0<\/span><span class=\"caps\">API. You need to install the open stack and required software in your system. <a href=\"https:\/\/docs.openstack.org\/python-openstackclient\/latest\/\">Click here for more info<\/a><\/span><\/li>\n<li>After the installation, you need to download the OpenStack RC file from the console. Please follow the steps<br \/>\n1. Log in to the <strong>5centsCDN<\/strong> console.<br \/>\n2. Go to Zones and select <strong>HTTP Push<\/strong>\u00a0or\u00a0<strong>VoD push<\/strong>\u00a0zone.<br \/>\n3. Click the <strong>Manage<\/strong>\u00a0button of your Push zone.<br \/>\n4. On the redirected page, click <strong>FTP \/ OpenStack Details.<br \/>\n<\/strong>5. You can download the RC file from the <strong>OpenStack RC File<\/strong> option<img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-3078\" src=\"https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2021\/08\/verson.jpg\" alt=\"\" width=\"928\" height=\"401\" \/><span style=\"background-color: #f5f8fa; font-family: Consolas, monaco, monospace;\"><br \/>\n<\/span><\/li>\n<li id=\"install-openstack-client-if-needed\">\n<pre><strong>Install Openstack client if<span class=\"widont\">\u00a0<\/span>needed.\n<\/strong>user@host:~$ pip install python-openstackclient<\/pre>\n<p><a href=\"https:\/\/docs.openstack.org\/python-openstackclient\/latest\/\" target=\"_blank\" rel=\"noopener\">You can refer to more details here<\/a><\/li>\n<li><strong>Set the OpenStack Environment variables.<\/strong>\n<pre>user@host:~$ <span class=\"nb\" style=\"font-family: Consolas, monaco, monospace;\">source<\/span><span style=\"background-color: #f5f8fa; font-family: Consolas, monaco, monospace;\"> <user_name>-openrc.sh<\/span><\/pre>\n<p>* <span style=\"background-color: #f5f8fa; font-family: Consolas, monaco, monospace;\"><user_name>-openrc.sh represents the downloaded RC file.<\/span><\/li>\n<\/ul>\n<p>You can retrieve the list of possible commands<\/p>\n<pre class=\"highlight\"><code>user@host:~$ swift --help<\/code><\/pre>\n<p>Here is the list of the main commands:<\/p>\n<table>\n<thead>\n<tr>\n<th>Command<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><strong>delete<\/strong><\/td>\n<td>Deletes a container or objects within a container<\/td>\n<\/tr>\n<tr>\n<td><strong>download<\/strong><\/td>\n<td>Downloads objects from containers<\/td>\n<\/tr>\n<tr>\n<td><strong>list<\/strong><\/td>\n<td>Lists the containers for the account or the objects for a container<\/td>\n<\/tr>\n<tr>\n<td><strong>post<\/strong><\/td>\n<td>Updates meta information for the account, container, or object. If the container is not found, it will be created automatically.<\/td>\n<\/tr>\n<tr>\n<td><strong>stat<\/strong><\/td>\n<td>Displays information for the account, container, or object.<\/td>\n<\/tr>\n<tr>\n<td><strong>upload<\/strong><\/td>\n<td>Uploads specified files and directories to the given container.<\/td>\n<\/tr>\n<tr>\n<td><strong>capabilities<\/strong><\/td>\n<td>Retrieves capability of the proxy.<\/td>\n<\/tr>\n<tr>\n<td><strong>tempurl<\/strong><\/td>\n<td>Generates a temporary URL for a Swift object.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>List Containers<\/h3>\n<p><code>user@host:~$ swift list<\/code><\/p>\n<h3>List all objects inside a Container<\/h3>\n<p><code>user@host:~$ swift list container_name<\/code><\/p>\n<h3 id=\"creating-a-public-object-container\">Creating a public object container<\/h3>\n<ul>\n<li>Create the container &#8220;container1&#8221;:<\/li>\n<\/ul>\n<p><code>user@host:~$ swift post container1<\/code><\/p>\n<ul>\n<li>Configure the access rights to make your container public:<\/li>\n<\/ul>\n<pre class=\"highlight\"><code>user@host:~$ swift post --header \"X-Container-Read: .r:*\" container1<\/code><\/pre>\n<ul>\n<li>Check the container configuration:<\/li>\n<\/ul>\n<pre class=\"highlight\"><code>user@host:~$ swift stat container1\n\nAccount: AUTH_b3e26xxxxxxxxxxxxxxxxxxxb0ba29\nContainer: container1\nObjects: 0\nBytes: 0\nRead ACL: .r:*\nWrite ACL:\nSync To:\nSync Key:\nAccept-Ranges: bytes\nX-Trans-Id: B2210C05:8D93_052711A1:01BB_561CC9DF_1B305:30D7\nX-Storage-Policy: Policy-0\nConnection: close\nX-Timestamp: 1444726875.27475\nContent-Type: text\/plain; charset=utf-8<\/code><\/pre>\n<h3 id=\"uploading-files-to-your-container\">Uploading files to your container<\/h3>\n<ul>\n<li>Upload the content of a local folder to a container:<\/li>\n<\/ul>\n<pre class=\"highlight\"><code>user@host:~$ swift upload container1 images\/\n\nimages\/img1.png\nimages\/img2.jpg<\/code><\/pre>\n<p>A prefix will automatically be added to your files if you send an entire folder instead of a single file.<\/p>\n<ul>\n<li>List a container&#8217;s files:<\/li>\n<\/ul>\n<pre class=\"highlight\"><code>user@host:~$ swift list container1\n\nimages\/img1.jpg\nimages\/img2.png\ntext1.txt\ntext2.txt\ntext3.txt<\/code><\/pre>\n<p>You can display all files with a particular prefix using the<em> &#8211;prefix<\/em> argument:<\/p>\n<pre class=\"highlight\"><code>user@host:~$ swift list container1 --prefix images\n\nimages\/img1.jpg\nimages\/img2.png<\/code><\/pre>\n<h3 id=\"downloading-files\">Downloading files<\/h3>\n<ul>\n<li>Download a file:<\/li>\n<\/ul>\n<pre class=\"highlight\"><code>user@host:~$ swift download container1 text1.txt\n\ntext1.txt [auth 0.328s, headers 0.452s, total 0.453s, 0.000 MB\/s]<\/code><\/pre>\n<p>You can download multiple files with the same prefix, using the following command:<\/p>\n<pre class=\"highlight\"><code>user@host:~$ swift download container1 --prefix images\n\nimages\/img1.png [auth 0.383s, headers 0.520s, total 0.522s, 0.135 MB\/s]\nimages\/img2.jpg [auth 0.371s, headers 0.514s, total 0.559s, 2.657 MB\/s]<\/code><\/pre>\n<h3 id=\"deleting-containers-or-objects\">Deleting containers or objects<\/h3>\n<ul>\n<li>Delete a file:<\/li>\n<\/ul>\n<pre class=\"highlight\"><code>user@host:~$ swift delete container1 text1.txt\n\ntext1.txt<\/code><\/pre>\n<p>As with downloading, you can delete multiple files using the same prefix, with the following command:<\/p>\n<pre class=\"highlight\"><code>user@host:~$ swift delete container1 images\/*\n\nimages\/img1.jpg\nimages\/img2.png<\/code><\/pre>\n<ul>\n<li>Delete a container:<\/li>\n<\/ul>\n<pre class=\"highlight\"><code>user@host:~$ swift delete container1\n\ntext2.txt\ntext3.txt<\/code><\/pre>\n<p>You can refer to this video tutorial for more info<\/p>\n<div style=\"width: 980px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-661-1\" width=\"980\" height=\"486\" preload=\"metadata\" controls=\"controls\"><source type=\"video\/mp4\" src=\"https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2023\/06\/OpnStk.mp4?_=1\" \/><a href=\"https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2023\/06\/OpnStk.mp4\">https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2023\/06\/OpnStk.mp4<\/a><\/video><\/div>\n","protected":false},"excerpt":{"rendered":"<p>The OpenStack Swift API is fully supported by 5centsCDN for efficient cloud storage management. To quickly set up and utilize this API, follow the steps provided below and start exploring its extensive features: The first step is to\u00a0prepare the environment to use the OpenStack\u00a0API. You need to install the open stack and required software in [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[45],"tags":[],"class_list":["post-661","post","type-post","status-publish","format-standard","hentry","category-cloud-storage"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.5.2 - aioseo.com -->\n\t<meta name=\"description\" content=\"The OpenStack Swift API is fully supported by 5centsCDN for efficient cloud storage management. To quickly set up and utilize this API, follow the steps provided below and start exploring its extensive features: The first step is to prepare the environment to use the OpenStack API. You need to install the open stack and required software in\" \/>\n\t<meta name=\"robots\" content=\"noarchive, noodp, notranslate, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n\t<meta name=\"author\" content=\"pradhyuman\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.5centscdn.net\/help\/how-to-use-openstack-swift-api\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.5.2\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"5centsCDN Help Center - 5centsCDN | Guides, Tutorials &amp; Support\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How to use OpenStack Swift API? - 5centsCDN Help Center\" \/>\n\t\t<meta property=\"og:description\" content=\"The OpenStack Swift API is fully supported by 5centsCDN for efficient cloud storage management. To quickly set up and utilize this API, follow the steps provided below and start exploring its extensive features: The first step is to prepare the environment to use the OpenStack API. You need to install the open stack and required software in\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.5centscdn.net\/help\/how-to-use-openstack-swift-api\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2024\/01\/Logo.png?wsr\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2024\/01\/Logo.png?wsr\" \/>\n\t\t<meta property=\"og:image:width\" content=\"160\" \/>\n\t\t<meta property=\"og:image:height\" content=\"58\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2021-08-04T14:28:56+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-03-12T17:54:39+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/5centscdn\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@5centscdn\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to use OpenStack Swift API? - 5centsCDN Help Center\" \/>\n\t\t<meta name=\"twitter:description\" content=\"The OpenStack Swift API is fully supported by 5centsCDN for efficient cloud storage management. To quickly set up and utilize this API, follow the steps provided below and start exploring its extensive features: The first step is to prepare the environment to use the OpenStack API. You need to install the open stack and required software in\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@5centscdn\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2024\/01\/Logo.png?wsr\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/how-to-use-openstack-swift-api\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.5centscdn.net\\\/help\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/kb\\\/v4\\\/zones\\\/http-push\\\/cloud-storage\\\/#listItem\",\"name\":\"Cloud Storage\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/kb\\\/v4\\\/zones\\\/http-push\\\/cloud-storage\\\/#listItem\",\"position\":2,\"name\":\"Cloud Storage\",\"item\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/kb\\\/v4\\\/zones\\\/http-push\\\/cloud-storage\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/how-to-use-openstack-swift-api\\\/#listItem\",\"name\":\"How to use OpenStack Swift API?\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/how-to-use-openstack-swift-api\\\/#listItem\",\"position\":3,\"name\":\"How to use OpenStack Swift API?\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/kb\\\/v4\\\/zones\\\/http-push\\\/cloud-storage\\\/#listItem\",\"name\":\"Cloud Storage\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/#organization\",\"name\":\"5centsCDN Help Center\",\"description\":\"5centsCDN | Guides, Tutorials & Support\",\"url\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/\",\"email\":\"hello@5centscdn.com\",\"telephone\":\"+13025203418\",\"foundingDate\":\"2021-06-08\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":1,\"maxValue\":50},\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/Logo.png?wsr\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/how-to-use-openstack-swift-api\\\/#organizationLogo\",\"width\":160,\"height\":58,\"caption\":\"5centsCDN Logo\"},\"image\":{\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/how-to-use-openstack-swift-api\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/facebook.com\\\/5centscdn\",\"https:\\\/\\\/x.com\\\/5centscdn\",\"https:\\\/\\\/instagram.com\\\/5centscdn\",\"https:\\\/\\\/tiktok.com\\\/@5centscdn\",\"https:\\\/\\\/pinterest.com\\\/5centscdn\",\"https:\\\/\\\/youtube.com\\\/5centscdn\",\"https:\\\/\\\/linkedin.com\\\/in\\\/5centscdn\",\"https:\\\/\\\/bsky.app\\\/profile\\\/5centscdn\",\"https:\\\/\\\/threads.com\\\/@5centscdn\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/author\\\/pradhyuman\\\/#author\",\"url\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/author\\\/pradhyuman\\\/\",\"name\":\"pradhyuman\",\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6b8609bbef17e7ef3a7663a00cfa6ddf14121cbea329a29f34e412902d1d0741?s=96&d=mm&r=g\"}},{\"@type\":\"SoftwareApplication\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/how-to-use-openstack-swift-api\\\/#softwareApp\",\"name\":\"How to use OpenStack Swift API?\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/how-to-use-openstack-swift-api\\\/#webpage\",\"url\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/how-to-use-openstack-swift-api\\\/\",\"name\":\"How to use OpenStack Swift API? - 5centsCDN Help Center\",\"description\":\"The OpenStack Swift API is fully supported by 5centsCDN for efficient cloud storage management. To quickly set up and utilize this API, follow the steps provided below and start exploring its extensive features: The first step is to prepare the environment to use the OpenStack API. You need to install the open stack and required software in\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/how-to-use-openstack-swift-api\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/author\\\/pradhyuman\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/author\\\/pradhyuman\\\/#author\"},\"datePublished\":\"2021-08-04T14:28:56+00:00\",\"dateModified\":\"2026-03-12T17:54:39+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/#website\",\"url\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/\",\"name\":\"5centsCDN Help Center\",\"alternateName\":\"5centsCDN\",\"description\":\"5centsCDN | Guides, Tutorials & Support\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.5centscdn.net\\\/help\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>How to use OpenStack Swift API? - 5centsCDN Help Center<\/title>\n\n","aioseo_head_json":{"title":"How to use OpenStack Swift API? - 5centsCDN Help Center","description":"The OpenStack Swift API is fully supported by 5centsCDN for efficient cloud storage management. To quickly set up and utilize this API, follow the steps provided below and start exploring its extensive features: The first step is to prepare the environment to use the OpenStack API. You need to install the open stack and required software in","canonical_url":"https:\/\/www.5centscdn.net\/help\/how-to-use-openstack-swift-api\/","robots":"noarchive, noodp, notranslate, max-snippet:-1, max-image-preview:large, max-video-preview:-1","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/www.5centscdn.net\/help\/how-to-use-openstack-swift-api\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.5centscdn.net\/help#listItem","position":1,"name":"Home","item":"https:\/\/www.5centscdn.net\/help","nextItem":{"@type":"ListItem","@id":"https:\/\/www.5centscdn.net\/help\/kb\/v4\/zones\/http-push\/cloud-storage\/#listItem","name":"Cloud Storage"}},{"@type":"ListItem","@id":"https:\/\/www.5centscdn.net\/help\/kb\/v4\/zones\/http-push\/cloud-storage\/#listItem","position":2,"name":"Cloud Storage","item":"https:\/\/www.5centscdn.net\/help\/kb\/v4\/zones\/http-push\/cloud-storage\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.5centscdn.net\/help\/how-to-use-openstack-swift-api\/#listItem","name":"How to use OpenStack Swift API?"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.5centscdn.net\/help#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.5centscdn.net\/help\/how-to-use-openstack-swift-api\/#listItem","position":3,"name":"How to use OpenStack Swift API?","previousItem":{"@type":"ListItem","@id":"https:\/\/www.5centscdn.net\/help\/kb\/v4\/zones\/http-push\/cloud-storage\/#listItem","name":"Cloud Storage"}}]},{"@type":"Organization","@id":"https:\/\/www.5centscdn.net\/help\/#organization","name":"5centsCDN Help Center","description":"5centsCDN | Guides, Tutorials & Support","url":"https:\/\/www.5centscdn.net\/help\/","email":"hello@5centscdn.com","telephone":"+13025203418","foundingDate":"2021-06-08","numberOfEmployees":{"@type":"QuantitativeValue","minValue":1,"maxValue":50},"logo":{"@type":"ImageObject","url":"https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2024\/01\/Logo.png?wsr","@id":"https:\/\/www.5centscdn.net\/help\/how-to-use-openstack-swift-api\/#organizationLogo","width":160,"height":58,"caption":"5centsCDN Logo"},"image":{"@id":"https:\/\/www.5centscdn.net\/help\/how-to-use-openstack-swift-api\/#organizationLogo"},"sameAs":["https:\/\/facebook.com\/5centscdn","https:\/\/x.com\/5centscdn","https:\/\/instagram.com\/5centscdn","https:\/\/tiktok.com\/@5centscdn","https:\/\/pinterest.com\/5centscdn","https:\/\/youtube.com\/5centscdn","https:\/\/linkedin.com\/in\/5centscdn","https:\/\/bsky.app\/profile\/5centscdn","https:\/\/threads.com\/@5centscdn"]},{"@type":"Person","@id":"https:\/\/www.5centscdn.net\/help\/author\/pradhyuman\/#author","url":"https:\/\/www.5centscdn.net\/help\/author\/pradhyuman\/","name":"pradhyuman","image":{"@type":"ImageObject","url":"https:\/\/secure.gravatar.com\/avatar\/6b8609bbef17e7ef3a7663a00cfa6ddf14121cbea329a29f34e412902d1d0741?s=96&d=mm&r=g"}},{"@type":"SoftwareApplication","@id":"https:\/\/www.5centscdn.net\/help\/how-to-use-openstack-swift-api\/#softwareApp","name":"How to use OpenStack Swift API?"},{"@type":"WebPage","@id":"https:\/\/www.5centscdn.net\/help\/how-to-use-openstack-swift-api\/#webpage","url":"https:\/\/www.5centscdn.net\/help\/how-to-use-openstack-swift-api\/","name":"How to use OpenStack Swift API? - 5centsCDN Help Center","description":"The OpenStack Swift API is fully supported by 5centsCDN for efficient cloud storage management. To quickly set up and utilize this API, follow the steps provided below and start exploring its extensive features: The first step is to prepare the environment to use the OpenStack API. You need to install the open stack and required software in","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.5centscdn.net\/help\/#website"},"breadcrumb":{"@id":"https:\/\/www.5centscdn.net\/help\/how-to-use-openstack-swift-api\/#breadcrumblist"},"author":{"@id":"https:\/\/www.5centscdn.net\/help\/author\/pradhyuman\/#author"},"creator":{"@id":"https:\/\/www.5centscdn.net\/help\/author\/pradhyuman\/#author"},"datePublished":"2021-08-04T14:28:56+00:00","dateModified":"2026-03-12T17:54:39+00:00"},{"@type":"WebSite","@id":"https:\/\/www.5centscdn.net\/help\/#website","url":"https:\/\/www.5centscdn.net\/help\/","name":"5centsCDN Help Center","alternateName":"5centsCDN","description":"5centsCDN | Guides, Tutorials & Support","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.5centscdn.net\/help\/#organization"}}]},"og:locale":"en_US","og:site_name":"5centsCDN Help Center - 5centsCDN | Guides, Tutorials &amp; Support","og:type":"article","og:title":"How to use OpenStack Swift API? - 5centsCDN Help Center","og:description":"The OpenStack Swift API is fully supported by 5centsCDN for efficient cloud storage management. To quickly set up and utilize this API, follow the steps provided below and start exploring its extensive features: The first step is to prepare the environment to use the OpenStack API. You need to install the open stack and required software in","og:url":"https:\/\/www.5centscdn.net\/help\/how-to-use-openstack-swift-api\/","og:image":"https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2024\/01\/Logo.png?wsr","og:image:secure_url":"https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2024\/01\/Logo.png?wsr","og:image:width":160,"og:image:height":58,"article:published_time":"2021-08-04T14:28:56+00:00","article:modified_time":"2026-03-12T17:54:39+00:00","article:publisher":"https:\/\/facebook.com\/5centscdn","twitter:card":"summary_large_image","twitter:site":"@5centscdn","twitter:title":"How to use OpenStack Swift API? - 5centsCDN Help Center","twitter:description":"The OpenStack Swift API is fully supported by 5centsCDN for efficient cloud storage management. To quickly set up and utilize this API, follow the steps provided below and start exploring its extensive features: The first step is to prepare the environment to use the OpenStack API. You need to install the open stack and required software in","twitter:creator":"@5centscdn","twitter:image":"https:\/\/www.5centscdn.net\/help\/wp-content\/uploads\/2024\/01\/Logo.png?wsr"},"aioseo_meta_data":{"post_id":"661","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":"2026-03-12 21:00:54","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"open_ai":null,"ai":null,"created":"2026-03-07 21:44:29","updated":"2026-03-12 21:00:54"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.5centscdn.net\/help\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.5centscdn.net\/help\/kb\/v4\/zones\/http-push\/cloud-storage\/\" title=\"Cloud Storage\">Cloud Storage<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\tHow to use OpenStack Swift API?\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.5centscdn.net\/help"},{"label":"Cloud Storage","link":"https:\/\/www.5centscdn.net\/help\/kb\/v4\/zones\/http-push\/cloud-storage\/"},{"label":"How to use OpenStack Swift API?","link":"https:\/\/www.5centscdn.net\/help\/how-to-use-openstack-swift-api\/"}],"_links":{"self":[{"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/posts\/661","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/comments?post=661"}],"version-history":[{"count":1,"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/posts\/661\/revisions"}],"predecessor-version":[{"id":2627,"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/posts\/661\/revisions\/2627"}],"wp:attachment":[{"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/media?parent=661"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/categories?post=661"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.5centscdn.net\/help\/wp-json\/wp\/v2\/tags?post=661"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}