API Documentation BETA


Get User Workspaces

API: https://narrato.io/api/v1/workspaces/
Method: GET

Headers Params:
- Authorization = "Token {api_token (string)}"

Sample Request
Sample Response
    
    Note: Only workspaces with plans having API access will be listed.

    {
        "links": {
            "next": null,
            "previous": null
        },
        "current_page": 1,
        "total": 2,
        "per_page": 25,
        "total_pages": 1,
        "data": [
            {
                "workspace_name": "raga2",
                "workspace_id": 546,
                "date_created": "2022-06-15 10:15:50 UTC"
            },
            {
                "workspace_name": "raga",
                "workspace_id": 470,
                "date_created": "2022-05-14 06:44:44 UTC"
            }
        ]
    }
    
    

Get Projects of a Workspace

API: https://narrato.io/api/v1/projects/?workspace_id={ws_id}
Method: GET

Get Params:
- workspace_id = {worspace_id (integer)}

Headers Params:
- Authorization = "Token {api_token (string)}"

Sample Request
Sample Response
    
    {
       "links": {
           "next": null,
           "previous": null
       },
       "current_page": 1,
       "total": 5,
       "per_page": 25,
       "total_pages": 1,
       "data": [
           {
               "project_name": "TEDD",
               "folder_id": 4042,
               "date_created": "2022-06-22 10:38:57 UTC",
               "project_id": 1786
           },
           {
               "project_name": "RAGA",
               "folder_id": 3933,
               "date_created": "2022-06-15 10:16:25 UTC",
               "project_id": 1721
           },
           {
               "project_name": "Example - Simple Project",
               "folder_id": 3932,
               "date_created": "2022-06-15 10:15:52 UTC",
               "project_id": 1720
           },
           {
               "project_name": "Example - Project with Folders",
               "folder_id": 3927,
               "date_created": "2022-06-15 10:15:51 UTC",
               "project_id": 1719
           },
           {
               "project_name": "Example - Website Builds",
               "folder_id": 3924,
               "date_created": "2022-06-15 10:15:50 UTC",
               "project_id": 1718
           }
       ]
    }
    
    

Create Project

API: https://narrato.io/api/v1/projects/
Method: POST

Headers Params:
- Authorization = "Token {api_token (string)}"

Body Params:
JSON raw data
- workspace_id (Id of the wokspcace)
- project_name (Name of the project to be created)

Sample Request
Sample Response
        
        {
            "project_name": "My project",
            "folder_id": 6779,
            "date_created": "2024-01-19T10:23:35.085472Z",
            "project_id": 3598,
            "SUCCESS": "Project created successfully!"
        }
        
        

Get Folders of a Project

API: https://narrato.io/api/v1/folders/?workspace_id={ws_id}&project_id={proj_id}
Method: GET

Get Params:
- workspace_id = {worspace_id (integer)}
- project_id = {project_id (integer)}
* Either 'workspace_id' or 'project_id' is required.

Headers Params:
- Authorization = "Token {api_token (string)}"

Sample Request
Sample Response
    
    {
       "links": {
           "next": null,
           "previous": null
       },
       "current_page": 1,
       "total": 5,
       "per_page": 25,
       "total_pages": 1,
       "data": [
           {
               "folder_id": 4040,
               "folder_name": "R21",
               "parent_folder_id": 4038,
               "parent_folder_name": "R2",
               "date_created": "2022-06-22 10:29:36 UTC",
               "content_count": 1
           },
           {
               "folder_id": 4039,
               "folder_name": "R3",
               "parent_folder_id": 3933,
               "parent_folder_name": "RAGA",
               "date_created": "2022-06-22 10:27:46 UTC",
               "content_count": 2
           },
           {
               "folder_id": 4038,
               "folder_name": "R2",
               "parent_folder_id": 3933,
               "parent_folder_name": "RAGA",
               "date_created": "2022-06-22 10:27:38 UTC",
               "content_count": 2
           },
           {
               "folder_id": 3965,
               "folder_name": "R1",
               "parent_folder_id": 3933,
               "parent_folder_name": "RAGA",
               "date_created": "2022-06-16 17:16:39 UTC",
               "content_count": 2
           },
           {
               "folder_id": 3933,
               "folder_name": "RAGA",
               "parent_folder_id": null,
               "parent_folder_name": null,
               "date_created": "2022-06-15 10:16:25 UTC",
               "content_count": 6
           }
       ]
    }
    
    

Create Folder

API: https://narrato.io/api/v1/folders/
Method: POST

Headers Params:
- Authorization = "Token {api_token (string)}"

Body Params:
JSON raw data
- workspace_id (Id of the wokspcace.)
- project_id (Id of the project)
- parent_folder_id (Id of the parent folder to create the folder into. *Optinal if folder is being created directly into the project.)
- folder_name (Name of the folder)

Sample Request
Sample Response
        
        {
            "folder_name": "My folder",
            "folder_id": 6781,
            "parent_folder_name": "My parent folder",
            "parent_folder_id": 6755,
            "date_created": "2024-01-19T11:16:18.941697Z",
            "content_count": 0,
            "SUCCESS": "Folder created successfully!"
        }
        
        

Get Tasks of a Project

API: https://narrato.io/api/v1/tasks/?project_id={proj_id}
Method: GET

Get Params:
- project_id = {project_id (integer)}

Headers Params:
- Authorization = "Token {api_token (string)}"

Body Params:
Form-data or raw JSON data (optional parameters for filtering the results)
- status (string)
- tags (string - comma seperated list of tags. E.g: tag1, tag2, tag3)
- due_date (string - YYYY-MM-DD)
- assignee (string - email of the assigne. E.g: abc@gmail.com)
- folder_id (int - folder_id)
- section_name (string - name of the content section)
- section_value (string - plain text value of the content section)

Sample Request
Sample Response
    
    {
        "links": {
            "next": null,
            "previous": null
        },
        "current_page": 1,
        "total": 5,
        "per_page": 25,
        "total_pages": 1,
        "data": [
            {
                "task_id": 37823,
                "title": "Created from API 5Jul22 - Task 2",
                "project_id": 1721,
                "folder_id": 4039,
                "folder_name": "R3",
                "status": "Ra2",
                "note_to_author": "",
                "assignee_list": [
                    "rm9nn@gmail.com"
                ],
                "tags": "tag1, tag2",
                "keywords": "content marketing, ai writing",
                "due_date": "2022-07-30 00:00:00 UTC",
                "date_created": "2022-07-05 16:17:13 UTC",
                "date_modified": "2022-07-05 16:17:13 UTC",
                "date_status_changed": "2022-07-05 16:17:13 UTC",
                "template": "Blog Article",
                "min_word_count": null,
                "max_word_count": null,
                "contents": [
                    {
                        "id": 82553,
                        "name": "Title",
                        "type": "text",
                        "data": "Blog Title from API",
                        "url": null
                    },
                    {
                        "id": 82554,
                        "name": "Article Body",
                        "type": "text",
                        "data": "Body from API",
                        "url": null
                    },
                    {
                        "id": 82555,
                        "name": "Meta Title",
                        "type": "text",
                        "data": "",
                        "url": null
                    },
                    {
                        "id": 82556,
                        "name": "Meta Description",
                        "type": "text",
                        "data": "meta from API",
                        "url": null
                    },
                    {
                        "id": 82557,
                        "name": "Meta Keywords",
                        "type": "text",
                        "data": "",
                        "url": null
                    },
                    {
                        "id": 82559,
                        "name": "Post images",
                        "type": "attachment",
                        "data": null,
                        "url": null
                    },
                    {
                        "id": 82558,
                        "name": "Author Bio",
                        "type": "text",
                        "data": "",
                        "url": null
                    },
                    {
                        "id": 82560,
                        "name": "Author profile photo",
                        "type": "attachment",
                        "data": null,
                        "url": null
                    }
                ],
                "combined_data": "Blog Title from API\n\nBody from API\n\nmeta from API\n\n"
            },
            {
                "task_id": 37822,
                "title": "Created from API 5Jul22",
                "project_id": 1721,
                "folder_id": 4039,
                "folder_name": "R3",
                "status": "Ra3",
                "note_to_author": "",
                "assignee_list": [
                    "rm9nn@gmail.com"
                ],
                "tags": "",
                "keywords: "",
                "due_date": "2022-07-30 00:00:00 UTC",
                "date_created": "2022-07-05 15:31:13 UTC",
                "date_modified": "2022-07-05 15:31:13 UTC",
                "date_status_changed": "2022-07-05 15:31:13 UTC",
                "template": "Blog Article",
                "min_word_count": null,
                "max_word_count": null,
                "contents": [
                    {
                        "id": 82545,
                        "name": "Title",
                        "type": "text",
                        "data": "Blog Title from API",
                        "url": null
                    },
                    {
                        "id": 82546,
                        "name": "Article Body",
                        "type": "text",
                        "data": "Body from API",
                        "url": null
                    },
                    {
                        "id": 82547,
                        "name": "Meta Title",
                        "type": "text",
                        "data": "",
                        "url": null
                    },
                    {
                        "id": 82548,
                        "name": "Meta Description",
                        "type": "text",
                        "data": "",
                        "url": null
                    },
                    {
                        "id": 82549,
                        "name": "Meta Keywords",
                        "type": "text",
                        "data": "",
                        "url": null
                    },
                    {
                        "id": 82551,
                        "name": "Post images",
                        "type": "attachment",
                        "data": null,
                        "url": null
                    },
                    {
                        "id": 82550,
                        "name": "Author Bio",
                        "type": "text",
                        "data": "",
                        "url": null
                    },
                    {
                        "id": 82552,
                        "name": "Author profile photo",
                        "type": "attachment",
                        "data": null,
                        "url": null
                    }
                ],
                "combined_data": "Blog Title from API\n\nBody from API\n\n"
            },
            {
                "task_id": 36410,
                "title": "Tata Nexon",
                "project_id": 1721,
                "folder_id": 3933,
                "folder_name": "RAGA",
                "status": "Ra1",
                "note_to_author": "",
                "assignee_list": [],
                "tags": "tag1, tag2",
                "keywords": "content marketing, ai writing",
                "due_date": null,
                "date_created": "2022-06-16 17:14:01 UTC",
                "date_modified": "2022-07-05 15:03:52 UTC",
                "date_status_changed": "2022-06-16 17:14:01 UTC",
                "min_word_count": null,
                "max_word_count": null,
                "contents": [
                    {
                        "id": 79758,
                        "name": "Title",
                        "type": "text",
                        "data": "<p>50+ Powerful Content Tools</p>",
                        "url": null
                    },
                    {
                        "id": 79759,
                        "name": "Article Body",
                        "type": "text",
                        "data": "<p>The content marketing landscape is so dynamic that what worked for you last month or the month before could drive no results for you today. There are new competitors springing up every day, search engine algorithms keep changing and new trends emerge faster than ever. To navigate your way through this volatile and ever-changing landscape, it is doubly important to stay on top of the latest content marketing statistics and trends.</p><p>Content marketing itself is a very wide area of digital marketing. It involves different content formats from written content to <a href=\"https://blog.narrato.io/how-to-create-high-converting-affiliate-marketing-content-using-videos-and-images/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\"><em>visual content</em></a> to audio content to interactive content and more. So when you’re talking about the latest content statistics, you should also consider video marketing statistics, social media marketing statistics and so much more.</p><p>That is why we’ve decided to look at each of these different subsets of content marketing individually here. Without much ado, let’s dive into some of the most important content marketing stats and trends that every content marketer should know.</p><ul><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place1\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Marketing Statistics and Trends</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place2\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Strategy Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place3\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content SEO Planning Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place4\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Visual Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place5\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Audio Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place6\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Social Media Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place7\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">B2B Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place8\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">B2C Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place9\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Marketing ROI Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place10\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Marketing Technology Statistics</a></li></ul><p><a href=\"https://narrato.io/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\"><em><img height=\"396\" src=\"https://blog.narrato.io/wp-content/uploads/2022/05/CTA-banners-for-blog-6.png\" width=\"1584\"/></em></a></p><h2><strong>Content Marketing Statistics and Trends</strong></h2><ul><li>80% of content marketers plan on creating more <span style=\"color: rgb(230, 0, 0);\">content than the previous year</span> according to the <a href=\"https://www.parse.ly/resources/data-studies/2022-content-matters\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Matters 2022 Report by Parse.ly</a></li><li>48% of companies with a strong content marketing <span style=\"background-color: rgb(161, 0, 0);\">strategy</span> consider <a href=\"https://blog.narrato.io/how-to-build-a-powerful-blog-content-strategy-that-converts-customers-and-builds-brand/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">blog content creation</a> as a core content marketing activity, says <a href=\"https://blog.hubspot.com/marketing/marketing-trends\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">HubSpot</a>. 56% of marketers find blogging to be very effective and 10% find blogs deliver the biggest ROI among all <a href=\"https://blog.narrato.io/13-popular-types-of-affiliate-marketing-content-with-tips-and-examples/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">content types</a>.</li><li>54% of decision-makers (buyers) say they spend more than an hour every week reading thought-leadership pieces but more than 70% say that nearly half of thought-leadership content delivers no valuable information. This was found in the <a href=\"https://b2b%20thought%20leadership%20impact%20study/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">2021 LinkedIn-Edelman B2B Thought Leadership Impact Study</a>.</li><li>Spending on content marketing is also likely to increase as a majority of content marketers plan to increase their content marketing budget in 2022, according to <a href=\"https://www.semrush.com/state-of-content-marketing/\" target=\"_blank\">State of Content Marketing 2022 Global Report by SEMrush</a>. 47% of marketers plan to increase spending by 11% to 25%, while another 10% of marketers hope to increase their budget up to 10%.</li></ul>",
                        "url": null
                    },
                    {
                        "id": 79760,
                        "name": "Meta Title",
                        "type": "text",
                        "data": "<p>50+ Powerful Content Tools</p>",
                        "url": null
                    },
                    {
                        "id": 79761,
                        "name": "Meta Description",
                        "type": "text",
                        "data": "<p>The content marketing landscape is so dynamic that what worked for you last month or the month before could drive no results for you today.</p>",
                        "url": null
                    },
                    {
                        "id": 79762,
                        "name": "Meta Keywords",
                        "type": "text",
                        "data": "<p>content marketing, smm</p>",
                        "url": null
                    },
                    {
                        "id": 81033,
                        "name": "Post images",
                        "type": "attachment",
                        "data": null,
                        "url": "https://narratopages.s3.amazonaws.com/tree_b9q1VNv.jpeg"
                    },
                    {
                        "id": 79763,
                        "name": "Post images",
                        "type": "attachment",
                        "data": null,
                        "url": "https://narratopages.s3.amazonaws.com/moon_p76C0Mk.jpeg"
                    },
                    {
                        "id": 79764,
                        "name": "Author Bio",
                        "type": "text",
                        "data": "<p>I'm full time writer with a degree in english literature.</p>",
                        "url": null
                    },
                    {
                        "id": 79765,
                        "name": "Author profile photo",
                        "type": "attachment",
                        "data": null,
                        "url": "https://narratopages.s3.amazonaws.com/moon_d6vbHyp.jpeg"
                    }
                ],
                "combined_data": "<p>50+ Powerful Content Tools</p>\n\n<p>The content marketing landscape is so dynamic that what worked for you last month or the month before could drive no results for you today. There are new competitors springing up every day, search engine algorithms keep changing and new trends emerge faster than ever. To navigate your way through this volatile and ever-changing landscape, it is doubly important to stay on top of the latest content marketing statistics and trends.</p><p>Content marketing itself is a very wide area of digital marketing. It involves different content formats from written content to <a href=\"https://blog.narrato.io/how-to-create-high-converting-affiliate-marketing-content-using-videos-and-images/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\"><em>visual content</em></a> to audio content to interactive content and more. So when you’re talking about the latest content statistics, you should also consider video marketing statistics, social media marketing statistics and so much more.</p><p>That is why we’ve decided to look at each of these different subsets of content marketing individually here. Without much ado, let’s dive into some of the most important content marketing stats and trends that every content marketer should know.</p><ul><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place1\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Marketing Statistics and Trends</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place2\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Strategy Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place3\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content SEO Planning Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place4\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Visual Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place5\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Audio Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place6\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Social Media Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place7\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">B2B Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place8\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">B2C Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place9\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Marketing ROI Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place10\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Marketing Technology Statistics</a></li></ul><p><a href=\"https://narrato.io/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\"><em><img height=\"396\" src=\"https://blog.narrato.io/wp-content/uploads/2022/05/CTA-banners-for-blog-6.png\" width=\"1584\"/></em></a></p><h2><strong>Content Marketing Statistics and Trends</strong></h2><ul><li>80% of content marketers plan on creating more <span style=\"color: rgb(230, 0, 0);\">content than the previous year</span> according to the <a href=\"https://www.parse.ly/resources/data-studies/2022-content-matters\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Matters 2022 Report by Parse.ly</a></li><li>48% of companies with a strong content marketing <span style=\"background-color: rgb(161, 0, 0);\">strategy</span> consider <a href=\"https://blog.narrato.io/how-to-build-a-powerful-blog-content-strategy-that-converts-customers-and-builds-brand/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">blog content creation</a> as a core content marketing activity, says <a href=\"https://blog.hubspot.com/marketing/marketing-trends\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">HubSpot</a>. 56% of marketers find blogging to be very effective and 10% find blogs deliver the biggest ROI among all <a href=\"https://blog.narrato.io/13-popular-types-of-affiliate-marketing-content-with-tips-and-examples/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">content types</a>.</li><li>54% of decision-makers (buyers) say they spend more than an hour every week reading thought-leadership pieces but more than 70% say that nearly half of thought-leadership content delivers no valuable information. This was found in the <a href=\"https://b2b%20thought%20leadership%20impact%20study/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">2021 LinkedIn-Edelman B2B Thought Leadership Impact Study</a>.</li><li>Spending on content marketing is also likely to increase as a majority of content marketers plan to increase their content marketing budget in 2022, according to <a href=\"https://www.semrush.com/state-of-content-marketing/\" target=\"_blank\">State of Content Marketing 2022 Global Report by SEMrush</a>. 47% of marketers plan to increase spending by 11% to 25%, while another 10% of marketers hope to increase their budget up to 10%.</li></ul>\n\n<p>50+ Powerful Content Tools</p>\n\n<p>The content marketing landscape is so dynamic that what worked for you last month or the month before could drive no results for you today.</p>\n\n<p>content marketing, smm</p>\n\n<p>I'm full time writer with a degree in english literature.</p>\n\n"
            }
        ]
    }
    
    

Get Tasks of a Workspace

API: https://narrato.io/api/v1/tasks/?workspace_id={ws_id}
Method: GET

Get Params:
- workspace_id = {workspace_id (integer)}

Headers Params:
- Authorization = "Token {api_token (string)}"

Body Params:
Form-data or raw JSON data (optional parameters for filtering the results)
- status (string)
- tags (string - comma seperated list of tags. E.g: tag1, tag2, tag3)
- due_date (string - YYYY-MM-DD)
- assignee (string - email of the assigne. E.g: abc@gmail.com)
- folder_id (int - folder_id)
- section_name (string - name of the content section)
- section_value (string - plain text value of the content section)

Sample Request
Sample Response
    
    {
        "links": {
            "next": https://narrato.io/api/v1/user/workspace/546/task/?page=2,
            "previous": null
        },
        "current_page": 1,
        "total": 54,
        "per_page": 25,
        "total_pages": 3,
        "data": [
            {
                "task_id": 37823,
                "title": "Created from API 5Jul22 - Task 2",
                "project_id": 1721,
                "folder_id": 4039,
                "folder_name": "R3",
                "status": "Ra2",
                "note_to_author": "",
                "assignee_list": [
                    "rm9nn@gmail.com"
                ],
                "tags": "tag1, tag2",
                "keywords": "content marketing, ai writing",
                "due_date": "2022-07-30 00:00:00 UTC",
                "date_created": "2022-07-05 16:17:13 UTC",
                "date_modified": "2022-07-05 16:17:13 UTC",
                "date_status_changed": "2022-07-05 16:17:13 UTC",
                "template": "Blog Article",
                "min_word_count": null,
                "max_word_count": null,
                "contents": [
                    {
                        "id": 82553,
                        "name": "Title",
                        "type": "text",
                        "data": "Blog Title from API",
                        "url": null
                    },
                    {
                        "id": 82554,
                        "name": "Article Body",
                        "type": "text",
                        "data": "Body from API",
                        "url": null
                    },
                    {
                        "id": 82555,
                        "name": "Meta Title",
                        "type": "text",
                        "data": "",
                        "url": null
                    },
                    {
                        "id": 82556,
                        "name": "Meta Description",
                        "type": "text",
                        "data": "meta from API",
                        "url": null
                    },
                    {
                        "id": 82557,
                        "name": "Meta Keywords",
                        "type": "text",
                        "data": "",
                        "url": null
                    },
                    {
                        "id": 82559,
                        "name": "Post images",
                        "type": "attachment",
                        "data": null,
                        "url": null
                    },
                    {
                        "id": 82558,
                        "name": "Author Bio",
                        "type": "text",
                        "data": "",
                        "url": null
                    },
                    {
                        "id": 82560,
                        "name": "Author profile photo",
                        "type": "attachment",
                        "data": null,
                        "url": null
                    }
                ],
                "combined_data": "Blog Title from API\n\nBody from API\n\nmeta from API\n\n"
            },
            {
                "task_id": 37822,
                "title": "Created from API 5Jul22",
                "project_id": 1721,
                "folder_id": 4039,
                "folder_name": "R3",
                "status": "Ra3",
                "note_to_author": "",
                "assignee_list": [
                    "rm9nn@gmail.com"
                ],
                "tags": "",
                "keywords": "content marketing, ai writing",
                "due_date": "2022-07-30 00:00:00 UTC",
                "date_created": "2022-07-05 15:31:13 UTC",
                "date_modified": "2022-07-05 15:31:13 UTC",
                "date_status_changed": "2022-07-05 15:31:13 UTC",
                "template": "Blog Article",
                "min_word_count": null,
                "max_word_count": null,
                "contents": [
                    {
                        "id": 82545,
                        "name": "Title",
                        "type": "text",
                        "data": "Blog Title from API",
                        "url": null
                    },
                    {
                        "id": 82546,
                        "name": "Article Body",
                        "type": "text",
                        "data": "Body from API",
                        "url": null
                    },
                    {
                        "id": 82547,
                        "name": "Meta Title",
                        "type": "text",
                        "data": "",
                        "url": null
                    },
                    {
                        "id": 82548,
                        "name": "Meta Description",
                        "type": "text",
                        "data": "",
                        "url": null
                    },
                    {
                        "id": 82549,
                        "name": "Meta Keywords",
                        "type": "text",
                        "data": "",
                        "url": null
                    },
                    {
                        "id": 82551,
                        "name": "Post images",
                        "type": "attachment",
                        "data": null,
                        "url": null
                    },
                    {
                        "id": 82550,
                        "name": "Author Bio",
                        "type": "text",
                        "data": "",
                        "url": null
                    },
                    {
                        "id": 82552,
                        "name": "Author profile photo",
                        "type": "attachment",
                        "data": null,
                        "url": null
                    }
                ],
                "combined_data": "Blog Title from API\n\nBody from API\n\n"
            },
            {
                "task_id": 36410,
                "title": "Tata Nexon",
                "project_id": 1721,
                "folder_id": 3933,
                "folder_name": "RAGA",
                "status": "Ra1",
                "note_to_author": "",
                "assignee_list": [],
                "due_date": null,
                "date_created": "2022-06-16 17:14:01 UTC",
                "date_modified": "2022-07-05 15:03:52 UTC",
                "date_status_changed": "2022-06-16 17:14:01 UTC",
                "min_word_count": null,
                "max_word_count": null,
                "contents": [
                    {
                        "id": 79758,
                        "name": "Title",
                        "type": "text",
                        "data": "<p>50+ Powerful Content Tools</p>",
                        "url": null
                    },
                    {
                        "id": 79759,
                        "name": "Article Body",
                        "type": "text",
                        "data": "<p>The content marketing landscape is so dynamic that what worked for you last month or the month before could drive no results for you today. There are new competitors springing up every day, search engine algorithms keep changing and new trends emerge faster than ever. To navigate your way through this volatile and ever-changing landscape, it is doubly important to stay on top of the latest content marketing statistics and trends.</p><p>Content marketing itself is a very wide area of digital marketing. It involves different content formats from written content to <a href=\"https://blog.narrato.io/how-to-create-high-converting-affiliate-marketing-content-using-videos-and-images/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\"><em>visual content</em></a> to audio content to interactive content and more. So when you’re talking about the latest content statistics, you should also consider video marketing statistics, social media marketing statistics and so much more.</p><p>That is why we’ve decided to look at each of these different subsets of content marketing individually here. Without much ado, let’s dive into some of the most important content marketing stats and trends that every content marketer should know.</p><ul><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place1\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Marketing Statistics and Trends</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place2\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Strategy Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place3\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content SEO Planning Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place4\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Visual Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place5\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Audio Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place6\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Social Media Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place7\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">B2B Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place8\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">B2C Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place9\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Marketing ROI Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place10\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Marketing Technology Statistics</a></li></ul><p><a href=\"https://narrato.io/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\"><em><img height=\"396\" src=\"https://blog.narrato.io/wp-content/uploads/2022/05/CTA-banners-for-blog-6.png\" width=\"1584\"/></em></a></p><h2><strong>Content Marketing Statistics and Trends</strong></h2><ul><li>80% of content marketers plan on creating more <span style=\"color: rgb(230, 0, 0);\">content than the previous year</span> according to the <a href=\"https://www.parse.ly/resources/data-studies/2022-content-matters\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Matters 2022 Report by Parse.ly</a></li><li>48% of companies with a strong content marketing <span style=\"background-color: rgb(161, 0, 0);\">strategy</span> consider <a href=\"https://blog.narrato.io/how-to-build-a-powerful-blog-content-strategy-that-converts-customers-and-builds-brand/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">blog content creation</a> as a core content marketing activity, says <a href=\"https://blog.hubspot.com/marketing/marketing-trends\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">HubSpot</a>. 56% of marketers find blogging to be very effective and 10% find blogs deliver the biggest ROI among all <a href=\"https://blog.narrato.io/13-popular-types-of-affiliate-marketing-content-with-tips-and-examples/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">content types</a>.</li><li>54% of decision-makers (buyers) say they spend more than an hour every week reading thought-leadership pieces but more than 70% say that nearly half of thought-leadership content delivers no valuable information. This was found in the <a href=\"https://b2b%20thought%20leadership%20impact%20study/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">2021 LinkedIn-Edelman B2B Thought Leadership Impact Study</a>.</li><li>Spending on content marketing is also likely to increase as a majority of content marketers plan to increase their content marketing budget in 2022, according to <a href=\"https://www.semrush.com/state-of-content-marketing/\" target=\"_blank\">State of Content Marketing 2022 Global Report by SEMrush</a>. 47% of marketers plan to increase spending by 11% to 25%, while another 10% of marketers hope to increase their budget up to 10%.</li></ul>",
                        "url": null
                    },
                    {
                        "id": 79760,
                        "name": "Meta Title",
                        "type": "text",
                        "data": "<p>50+ Powerful Content Tools</p>",
                        "url": null
                    },
                    {
                        "id": 79761,
                        "name": "Meta Description",
                        "type": "text",
                        "data": "<p>The content marketing landscape is so dynamic that what worked for you last month or the month before could drive no results for you today.</p>",
                        "url": null
                    },
                    {
                        "id": 79762,
                        "name": "Meta Keywords",
                        "type": "text",
                        "data": "<p>content marketing, smm</p>",
                        "url": null
                    },
                    {
                        "id": 81033,
                        "name": "Post images",
                        "type": "attachment",
                        "data": null,
                        "url": "https://narratopages.s3.amazonaws.com/tree_b9q1VNv.jpeg"
                    },
                    {
                        "id": 79763,
                        "name": "Post images",
                        "type": "attachment",
                        "data": null,
                        "url": "https://narratopages.s3.amazonaws.com/moon_p76C0Mk.jpeg"
                    },
                    {
                        "id": 79764,
                        "name": "Author Bio",
                        "type": "text",
                        "data": "<p>I'm full time writer with a degree in english literature.</p>",
                        "url": null
                    },
                    {
                        "id": 79765,
                        "name": "Author profile photo",
                        "type": "attachment",
                        "data": null,
                        "url": "https://narratopages.s3.amazonaws.com/moon_d6vbHyp.jpeg"
                    }
                ],
                "combined_data": "<p>50+ Powerful Content Tools</p>\n\n<p>The content marketing landscape is so dynamic that what worked for you last month or the month before could drive no results for you today. There are new competitors springing up every day, search engine algorithms keep changing and new trends emerge faster than ever. To navigate your way through this volatile and ever-changing landscape, it is doubly important to stay on top of the latest content marketing statistics and trends.</p><p>Content marketing itself is a very wide area of digital marketing. It involves different content formats from written content to <a href=\"https://blog.narrato.io/how-to-create-high-converting-affiliate-marketing-content-using-videos-and-images/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\"><em>visual content</em></a> to audio content to interactive content and more. So when you’re talking about the latest content statistics, you should also consider video marketing statistics, social media marketing statistics and so much more.</p><p>That is why we’ve decided to look at each of these different subsets of content marketing individually here. Without much ado, let’s dive into some of the most important content marketing stats and trends that every content marketer should know.</p><ul><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place1\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Marketing Statistics and Trends</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place2\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Strategy Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place3\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content SEO Planning Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place4\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Visual Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place5\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Audio Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place6\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Social Media Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place7\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">B2B Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place8\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">B2C Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place9\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Marketing ROI Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place10\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Marketing Technology Statistics</a></li></ul><p><a href=\"https://narrato.io/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\"><em><img height=\"396\" src=\"https://blog.narrato.io/wp-content/uploads/2022/05/CTA-banners-for-blog-6.png\" width=\"1584\"/></em></a></p><h2><strong>Content Marketing Statistics and Trends</strong></h2><ul><li>80% of content marketers plan on creating more <span style=\"color: rgb(230, 0, 0);\">content than the previous year</span> according to the <a href=\"https://www.parse.ly/resources/data-studies/2022-content-matters\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Matters 2022 Report by Parse.ly</a></li><li>48% of companies with a strong content marketing <span style=\"background-color: rgb(161, 0, 0);\">strategy</span> consider <a href=\"https://blog.narrato.io/how-to-build-a-powerful-blog-content-strategy-that-converts-customers-and-builds-brand/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">blog content creation</a> as a core content marketing activity, says <a href=\"https://blog.hubspot.com/marketing/marketing-trends\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">HubSpot</a>. 56% of marketers find blogging to be very effective and 10% find blogs deliver the biggest ROI among all <a href=\"https://blog.narrato.io/13-popular-types-of-affiliate-marketing-content-with-tips-and-examples/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">content types</a>.</li><li>54% of decision-makers (buyers) say they spend more than an hour every week reading thought-leadership pieces but more than 70% say that nearly half of thought-leadership content delivers no valuable information. This was found in the <a href=\"https://b2b%20thought%20leadership%20impact%20study/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">2021 LinkedIn-Edelman B2B Thought Leadership Impact Study</a>.</li><li>Spending on content marketing is also likely to increase as a majority of content marketers plan to increase their content marketing budget in 2022, according to <a href=\"https://www.semrush.com/state-of-content-marketing/\" target=\"_blank\">State of Content Marketing 2022 Global Report by SEMrush</a>. 47% of marketers plan to increase spending by 11% to 25%, while another 10% of marketers hope to increase their budget up to 10%.</li></ul>\n\n<p>50+ Powerful Content Tools</p>\n\n<p>The content marketing landscape is so dynamic that what worked for you last month or the month before could drive no results for you today.</p>\n\n<p>content marketing, smm</p>\n\n<p>I'm full time writer with a degree in english literature.</p>\n\n"
            }
        ]
    }
    
    

Get Content Sections of a Task

API: https://narrato.io/api/v1/task/content-sections/?task_id={task_id}
Method: GET

Get Params:
- task_id = {task_id (integer)}

Headers Params:
- Authorization = "Token {api_token (string)}"

Sample Request
Sample Response
    
    [
       {
           "task_id": 36407,
           "section_id": 79747,
           "section_name": "Title"
       },
       {
           "task_id": 36407,
           "section_id": 79749,
           "section_name": "Article Body"
       },
       {
           "task_id": 36407,
           "section_id": 79750,
           "section_name": "Meta Title"
       },
       {
           "task_id": 36407,
           "section_id": 79751,
           "section_name": "Meta Description"
       },
       {
           "task_id": 36407,
           "section_id": 79752,
           "section_name": "Meta Keywords"
       },
       {
           "task_id": 36407,
           "section_id": 79748,
           "section_name": "Post images"
       },
       {
           "task_id": 36407,
           "section_id": 80821,
           "section_name": "Post images"
       },
       {
           "task_id": 36407,
           "section_id": 79753,
           "section_name": "Author Bio"
       },
       {
           "task_id": 36407,
           "section_id": 79754,
           "section_name": "Author profile photo"
       }
    ]
    
    

Get Task MetaData & Content

API: https://narrato.io/api/v1/task/meta-data/?task_id={task_id}
Method: GET

Get Params:
- task_id = {task_id (integer)}

Headers Params:
- Authorization = "Token {api_token (string)}"

Sample Request
Sample Response
    
    {
        "task_id": 36410,
        "title": "Tata Nexon",
        "project_id": 1721,
        "folder_id": 3933,
        "folder_name": "RAGA",
        "status": "Ra1",
        "note_to_author": "",
        "assignee_list": [],
        "tags": "tag1, tag2",
        "keywords": "content marketing, ai writing",
        "due_date": null,
        "date_created": "2022-06-16 17:14:01 UTC",
        "date_modified": "2022-07-05 15:03:52 UTC",
        "date_status_changed": "2022-06-16 17:14:01 UTC",
        "min_word_count": null,
        "max_word_count": null,
        "contents": [
            {
                "id": 79758,
                "name": "Title",
                "type": "text",
                "data": "<p>50+ Powerful Content Tools</p>",
                "url": null
            },
            {
                "id": 79759,
                "name": "Article Body",
                "type": "text",
                "data": "<p>The content marketing landscape is so dynamic that what worked for you last month or the month before could drive no results for you today. There are new competitors springing up every day, search engine algorithms keep changing and new trends emerge faster than ever. To navigate your way through this volatile and ever-changing landscape, it is doubly important to stay on top of the latest content marketing statistics and trends.</p><p>Content marketing itself is a very wide area of digital marketing. It involves different content formats from written content to <a href=\"https://blog.narrato.io/how-to-create-high-converting-affiliate-marketing-content-using-videos-and-images/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\"><em>visual content</em></a> to audio content to interactive content and more. So when you’re talking about the latest content statistics, you should also consider video marketing statistics, social media marketing statistics and so much more.</p><p>That is why we’ve decided to look at each of these different subsets of content marketing individually here. Without much ado, let’s dive into some of the most important content marketing stats and trends that every content marketer should know.</p><ul><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place1\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Marketing Statistics and Trends</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place2\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Strategy Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place3\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content SEO Planning Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place4\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Visual Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place5\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Audio Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place6\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Social Media Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place7\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">B2B Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place8\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">B2C Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place9\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Marketing ROI Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place10\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Marketing Technology Statistics</a></li></ul><p><a href=\"https://narrato.io/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\"><em><img height=\"396\" src=\"https://blog.narrato.io/wp-content/uploads/2022/05/CTA-banners-for-blog-6.png\" width=\"1584\"/></em></a></p><h2><strong>Content Marketing Statistics and Trends</strong></h2><ul><li>80% of content marketers plan on creating more <span style=\"color: rgb(230, 0, 0);\">content than the previous year</span> according to the <a href=\"https://www.parse.ly/resources/data-studies/2022-content-matters\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Matters 2022 Report by Parse.ly</a></li><li>48% of companies with a strong content marketing <span style=\"background-color: rgb(161, 0, 0);\">strategy</span> consider <a href=\"https://blog.narrato.io/how-to-build-a-powerful-blog-content-strategy-that-converts-customers-and-builds-brand/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">blog content creation</a> as a core content marketing activity, says <a href=\"https://blog.hubspot.com/marketing/marketing-trends\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">HubSpot</a>. 56% of marketers find blogging to be very effective and 10% find blogs deliver the biggest ROI among all <a href=\"https://blog.narrato.io/13-popular-types-of-affiliate-marketing-content-with-tips-and-examples/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">content types</a>.</li><li>54% of decision-makers (buyers) say they spend more than an hour every week reading thought-leadership pieces but more than 70% say that nearly half of thought-leadership content delivers no valuable information. This was found in the <a href=\"https://b2b%20thought%20leadership%20impact%20study/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">2021 LinkedIn-Edelman B2B Thought Leadership Impact Study</a>.</li><li>Spending on content marketing is also likely to increase as a majority of content marketers plan to increase their content marketing budget in 2022, according to <a href=\"https://www.semrush.com/state-of-content-marketing/\" target=\"_blank\">State of Content Marketing 2022 Global Report by SEMrush</a>. 47% of marketers plan to increase spending by 11% to 25%, while another 10% of marketers hope to increase their budget up to 10%.</li></ul>",
                "url": null
            },
            {
                "id": 79760,
                "name": "Meta Title",
                "type": "text",
                "data": "<p>50+ Powerful Content Tools</p>",
                "url": null
            },
            {
                "id": 79761,
                "name": "Meta Description",
                "type": "text",
                "data": "<p>The content marketing landscape is so dynamic that what worked for you last month or the month before could drive no results for you today.</p>",
                "url": null
            },
            {
                "id": 79762,
                "name": "Meta Keywords",
                "type": "text",
                "data": "<p>content marketing, smm</p>",
                "url": null
            },
            {
                "id": 81033,
                "name": "Post images",
                "type": "attachment",
                "data": null,
                "url": "https://narratopages.s3.amazonaws.com/tree_b9q1VNv.jpeg"
            },
            {
                "id": 79763,
                "name": "Post images",
                "type": "attachment",
                "data": null,
                "url": "https://narratopages.s3.amazonaws.com/moon_p76C0Mk.jpeg"
            },
            {
                "id": 79764,
                "name": "Author Bio",
                "type": "text",
                "data": "<p>I'm full time writer with a degree in english literature.</p>",
                "url": null
            },
            {
                "id": 79765,
                "name": "Author profile photo",
                "type": "attachment",
                "data": null,
                "url": "https://narratopages.s3.amazonaws.com/moon_d6vbHyp.jpeg"
            }
        ],
        "combined_data": "<p>50+ Powerful Content Tools</p>\n\n<p>The content marketing landscape is so dynamic that what worked for you last month or the month before could drive no results for you today. There are new competitors springing up every day, search engine algorithms keep changing and new trends emerge faster than ever. To navigate your way through this volatile and ever-changing landscape, it is doubly important to stay on top of the latest content marketing statistics and trends.</p><p>Content marketing itself is a very wide area of digital marketing. It involves different content formats from written content to <a href=\"https://blog.narrato.io/how-to-create-high-converting-affiliate-marketing-content-using-videos-and-images/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\"><em>visual content</em></a> to audio content to interactive content and more. So when you’re talking about the latest content statistics, you should also consider video marketing statistics, social media marketing statistics and so much more.</p><p>That is why we’ve decided to look at each of these different subsets of content marketing individually here. Without much ado, let’s dive into some of the most important content marketing stats and trends that every content marketer should know.</p><ul><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place1\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Marketing Statistics and Trends</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place2\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Strategy Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place3\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content SEO Planning Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place4\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Visual Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place5\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Audio Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place6\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Social Media Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place7\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">B2B Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place8\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">B2C Content Marketing Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place9\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Marketing ROI Statistics</a></li><li><a href=\"https://blog.narrato.io/50-powerful-content-marketing-statistics-and-trends-every-content-marketer-must-know/#place10\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Marketing Technology Statistics</a></li></ul><p><a href=\"https://narrato.io/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\"><em><img height=\"396\" src=\"https://blog.narrato.io/wp-content/uploads/2022/05/CTA-banners-for-blog-6.png\" width=\"1584\"/></em></a></p><h2><strong>Content Marketing Statistics and Trends</strong></h2><ul><li>80% of content marketers plan on creating more <span style=\"color: rgb(230, 0, 0);\">content than the previous year</span> according to the <a href=\"https://www.parse.ly/resources/data-studies/2022-content-matters\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">Content Matters 2022 Report by Parse.ly</a></li><li>48% of companies with a strong content marketing <span style=\"background-color: rgb(161, 0, 0);\">strategy</span> consider <a href=\"https://blog.narrato.io/how-to-build-a-powerful-blog-content-strategy-that-converts-customers-and-builds-brand/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">blog content creation</a> as a core content marketing activity, says <a href=\"https://blog.hubspot.com/marketing/marketing-trends\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">HubSpot</a>. 56% of marketers find blogging to be very effective and 10% find blogs deliver the biggest ROI among all <a href=\"https://blog.narrato.io/13-popular-types-of-affiliate-marketing-content-with-tips-and-examples/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">content types</a>.</li><li>54% of decision-makers (buyers) say they spend more than an hour every week reading thought-leadership pieces but more than 70% say that nearly half of thought-leadership content delivers no valuable information. This was found in the <a href=\"https://b2b%20thought%20leadership%20impact%20study/\" style=\"color: rgb(51, 94, 234);\" target=\"_blank\">2021 LinkedIn-Edelman B2B Thought Leadership Impact Study</a>.</li><li>Spending on content marketing is also likely to increase as a majority of content marketers plan to increase their content marketing budget in 2022, according to <a href=\"https://www.semrush.com/state-of-content-marketing/\" target=\"_blank\">State of Content Marketing 2022 Global Report by SEMrush</a>. 47% of marketers plan to increase spending by 11% to 25%, while another 10% of marketers hope to increase their budget up to 10%.</li></ul>\n\n<p>50+ Powerful Content Tools</p>\n\n<p>The content marketing landscape is so dynamic that what worked for you last month or the month before could drive no results for you today.</p>\n\n<p>content marketing, smm</p>\n\n<p>I'm full time writer with a degree in english literature.</p>\n\n"
    }
    
    

Update Task MetaData and/or Content

API: https://narrato.io/api/v1/task/update-meta-data/
Method: PUT

Headers Params:
- Authorization = "Token {api_token (string)}"

Body Params:
JSON raw data
- It will take all meta data parameters returned in 'Get task metadata' API.
- It must include the 'task_id' of the task.

Sample Request
Sample JSON Input Data
    
    {
        "task_id": 509334,
        "status": "New Item",
        "due_date": "2024-03-04",
        "add_assignee": "rm9nn@gmail.com",
        "title": "Title updated from API",
        "contents": [
            {
                "name": "title",
                "data": "My blog title from API"
            },
            {
                "name": "Body",
                "data": "Body text Test text added from API"
            },
            {
                "name": "meta description",
                "data": "Meta description from API"
            }
        ],
        "template": "my blog"
    }
    
    
Sample Response
    
    {
       "errors": {
           "status": "This status is not available for the task. Status assigned as RT 1."
       },
       "result": {
           "task_id": 509334,
           "title": "Title updated from API - 2",
           "project_id": 1786,
           "folder_id": 4043,
           "folder_name": "TE F1",
           "status": "RT 1",
           "note_to_author": "",
           "assignee_list": [
               "rm9nn@gmail.com"
           ],
           "due_date": "2024-03-04 00:00:00 UTC",
           "date_created": "2024-01-02 10:41:08 UTC",
           "date_modified": "2024-01-06 07:19:12 UTC",
           "date_status_changed": "2022-06-22 10:41:08 UTC",
           "template": "Blog Article",
           "min_word_count": null,
           "max_word_count": null,
           "contents": [
               {
                   "id": 80805,
                   "name": "Title",
                   "type": "text",
                   "data": "My blog title from API",
                   "url": null
               },
               {
                   "id": 80822,
                   "name": "Body",
                   "type": "text",
                   "data": "Body text Test text added from API",
                   "url": null
               },
               {
                   "id": 80823,
                   "name": "Meta Title",
                   "type": "text",
                   "data": "",
                   "url": null
               },
               {
                   "id": 80824,
                   "name": "Meta description",
                   "type": "text",
                   "data": "Meta description from API",
                   "url": null
               },
               {
                   "id": 80825,
                   "name": "Meta Keywords",
                   "type": "text",
                   "data": "key1, key2",
                   "url": null
               },
               {
                   "id": 80806,
                   "name": "Post images",
                   "type": "attachment",
                   "data": null,
                   "url": null
               },
               {
                   "id": 82544,
                   "name": "Author Bio",
                   "type": "text",
                   "data": "",
                   "url": null
               },
               {
                   "id": 80827,
                   "name": "Author profile photo",
                   "type": "attachment",
                   "data": null,
                   "url": null
               }
           ],
           "combined_data": "Test text added from API 5 Jul 22\n\nkey1, key2\n\n"
       }
    }
    
    

Create a Task with MetaData

API: https://narrato.io/api/v1/create-task/
Method: POST

Headers Params:
- Authorization = "Token {api_token (string)}"

Body Params:
JSON raw data
- It will take all meta data parameters returned in 'Get task metadata' API.
- It must include the 'project_id' and 'folder_id' (optional). This will define the directory to create the task.

Sample Request
Sample JSON Input Data
    
    {
       "project_id": 1786,
       "folder_id": 4044,
       "title": "Raga from API 3",
       "status": "RT 1",
       "due_date": "2022-07-30",
       "add_assignee": "rm9nn@gmail.com",
       "keywords": "seo, content, google, marketing",
       "tags": "tag1, tag2",
       "contents": [
           {
               "name": "Title",
               "data": "Blog Title from API"
           },
           {
               "name": "Article Body",
               "data": "Body from API"
           },
           {
               "name": "Mama",
               "data": "mama from API"
           }
       ],
       "template": "blog article"
    }
    
    
Sample Response
    
    {
       "errors": {
           "contents": [
               "Content with name 'Mama' is not available for the current template."
           ]
       },
       "SUCCESS": "TASK CREATED",
       "task_id": 36855
    }
    
    

Get Workflow of a Project

API: https://narrato.io/api/v1/status/?project_id={project_id}
Method: GET

GET Params:
- project_id = "{project_id (integer)}"

Headers Params:
- Authorization = "Token {api_token (string)}"

Sample Request
Sample JSON Input Data
        
        [
            {
                "id": 2318,
                "status": "New Item"
            },
            {
                "id": 2319,
                "status": "Drafting"
            },
            {
                "id": 2320,
                "status": "In - Review"
            },
            {
                "id": 2321,
                "status": "Delivered"
            },
            {
                "id": 2322,
                "status": "Request Revision"
            },
            {
                "id": 2323,
                "status": "Completed"
            },
            {
                "id": 2324,
                "status": "Published"
            }
        ]
        
        

Get Content Templates of a Workspace

API: https://narrato.io/api/v1/workspace/templates/?workspace_id={workspace_id}
Method: GET

GET Params:
- workspace_id = "{workspace_id (integer)}"

Headers Params:
- Authorization = "Token {api_token (string)}"

Sample Request
Sample JSON Input Data
        
        [
            {
                "id": 12957,
                "title": "Product Landing Page",
                "template_fields": [
                    {
                        "name": "Main CTA text",
                        "type": "text"
                    },
                    {
                        "name": "Header image",
                        "type": "attachment"
                    },
                    {
                        "name": "Feature 1",
                        "type": "text"
                    },
                    {
                        "name": "Feature 2",
                        "type": "text"
                    },
                    {
                        "name": "Feature 3",
                        "type": "text"
                    },
                    {
                        "name": "Feature 4",
                        "type": "text"
                    },
                    {
                        "name": "Feature Screenshots",
                        "type": "attachment"
                    }
                ]
            },
            {
                "id": 98848,
                "title": "Product description",
                "template_fields": [
                    {
                        "name": "Product name",
                        "type": "plain_text"
                    },
                    {
                        "name": "Product description",
                        "type": "text"
                    },
                    {
                        "name": "Category",
                        "type": "plain_text"
                    },
                    {
                        "name": "Footer descriptions",
                        "type": "text"
                    },
                    {
                        "name": "Footer FAQ",
                        "type": "text"
                    }
                ]
            },
            {
                "id": 87630,
                "title": "Blog post",
                "template_fields": [
                    {
                        "name": "Blog title",
                        "type": "plain_text"
                    },
                    {
                        "name": "Blog article body",
                        "type": "text"
                    },
                    {
                        "name": "Feature image",
                        "type": "attachment"
                    },
                    {
                        "name": "Meta title",
                        "type": "plain_text"
                    },
                    {
                        "name": "Meta description",
                        "type": "plain_text"
                    },
                    {
                        "name": "Social media post text",
                        "type": "plain_text"
                    }
                ]
            },
            {
                "id": 14104,
                "title": "single field",
                "template_fields": [
                    {
                        "name": "Content",
                        "type": "text"
                    }
                ]
            }
        ]
        
        

Pagination

For all GET endpoints the pagination can be achieved by passing the param 'page' with positive integer value (1 to n). If paginated data exists then the response will have the values for fields 'next' and 'previous' for 'links' field.

Below fields are for paginated data:
- links, next, previous : Use the 'next' and 'previous' links directly to get the paginated data.
- current_page : The current page in pagination.
- total_pages : Total number of pages for paginating the data.
- per_page: Maximum number of results returned per page
- total: Total number of results/data available

        
        {
            "links": {
                "next": "https://narrato.io/api/v1/workspaces/?page=3",
                "previous": "https://narrato.io/api/v1/workspaces/"
            },
            "current_page": 2,
            "total": 63,
            "per_page": 25,
            "total_pages": 3,
            data: [
                ..
            ]
        }
        
        
Below is an example showing the pagination for GET workspaces endpoint:

API: https://narrato.io/api/v1/workspaces/?page=2
Method: GET

Headers Params:
- Authorization = "Token {api_token (string)}"

Params:
- page (positive integer value)

Sample Request
Sample Response
        
        {
            "links": {
                "next": "https://narrato.io/api/v1/workspaces/?page=3",
                "previous": "https://narrato.io/api/v1/workspaces/"
            },
            "current_page": 2,
            "total": 63,
            "per_page": 25,
            "total_pages": 3,
            "data": [
                {
                    "workspace_name": "Worspace 1",
                    "workspace_id": 178,
                    "date_created": "2021-06-16T07:20:46.517079Z"
                },
                {
                    "workspace_name": "Worspace 2",
                    "workspace_id": 138,
                    "date_created": "2021-04-19T12:39:08.046865Z"
                },
                {
                    "workspace_name": "Worspace 3",
                    "workspace_id": 133,
                    "date_created": "2021-04-14T12:49:31.155147Z"
                },
                {
                    "workspace_name": "Worspace 4",
                    "workspace_id": 132,
                    "date_created": "2021-04-14T08:10:34.639785Z"
                },
                {
                    "workspace_name": "Worspace 5",
                    "workspace_id": 131,
                    "date_created": "2021-04-13T13:30:06.105390Z"
                },
                {
                    "workspace_name": "Worspace 6",
                    "workspace_id": 118,
                    "date_created": "2021-04-07T07:52:17.526958Z"
                },
                {
                    "workspace_name": "Worspace 7",
                    "workspace_id": 117,
                    "date_created": "2021-04-05T10:28:03.899366Z"
                },
                {
                    "workspace_name": "Worspace 8",
                    "workspace_id": 116,
                    "date_created": "2021-04-05T10:26:28.941260Z"
                },
                {
                    "workspace_name": "Worspace 9",
                    "workspace_id": 109,
                    "date_created": "2021-03-30T15:26:23.332609Z"
                },
                {
                    "workspace_name": "Worspace 10",
                    "workspace_id": 107,
                    "date_created": "2021-03-26T09:44:26.187386Z"
                },
                {
                    "workspace_name": "Worspace 11",
                    "workspace_id": 106,
                    "date_created": "2021-03-25T08:24:26.639197Z"
                },
                {
                    "workspace_name": "Worspace 12",
                    "workspace_id": 103,
                    "date_created": "2021-03-23T09:24:05.491634Z"
                },
                {
                    "workspace_name": "Worspace 13",
                    "workspace_id": 61,
                    "date_created": "2021-02-26T05:13:29.019064Z"
                },
                {
                    "workspace_name": "Worspace 14",
                    "workspace_id": 56,
                    "date_created": "2021-02-18T17:22:39.765000Z"
                },
                {
                    "workspace_name": "Worspace 15",
                    "workspace_id": 54,
                    "date_created": "2021-01-30T13:47:45.674715Z"
                },
                {
                    "workspace_name": "Worspace 16",
                    "workspace_id": 49,
                    "date_created": "2021-01-18T10:35:50.237125Z"
                },
                {
                    "workspace_name": "Worspace 17",
                    "workspace_id": 44,
                    "date_created": "2020-11-30T08:29:35.178988Z"
                },
                {
                    "workspace_name": "Worspace 18",
                    "workspace_id": 43,
                    "date_created": "2020-11-27T04:50:29.133901Z"
                },
                {
                    "workspace_name": "Worspace 19",
                    "workspace_id": 41,
                    "date_created": "2020-10-21T19:20:48.915283Z"
                },
                {
                    "workspace_name": "Worspace 20",
                    "workspace_id": 37,
                    "date_created": "2020-10-15T07:00:02.730509Z"
                },
                {
                    "workspace_name": "Worspace 21",
                    "workspace_id": 36,
                    "date_created": "2020-10-15T06:43:44.518013Z"
                },
                {
                    "workspace_name": "Worspace 22",
                    "workspace_id": 35,
                    "date_created": "2020-10-15T04:50:57.274922Z"
                },
                {
                    "workspace_name": "Worspace 23",
                    "workspace_id": 34,
                    "date_created": "2020-10-15T04:50:29.214300Z"
                },
                {
                    "workspace_name": "Worspace 24",
                    "workspace_id": 33,
                    "date_created": "2020-10-13T09:05:24.445479Z"
                },
                {
                    "workspace_name": "Worspace 25",
                    "workspace_id": 32,
                    "date_created": "2020-10-13T08:47:46.488822Z"
                }
            ]
        }