{"id":35965,"date":"2024-11-01T09:44:17","date_gmt":"2024-11-01T09:44:17","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=35965"},"modified":"2024-11-01T11:09:42","modified_gmt":"2024-11-01T11:09:42","slug":"machine-learning-and-deep-learning-algorithm-trading-sentiment-analysis-using-twitter-and-yelp-data","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/35965\/","title":{"rendered":"Machine Learning and Deep Learning Algorithm Trading, Sentiment Analysis Using Twitter and Yelp Data"},"content":{"rendered":"<p><body><\/p>\n<h2>1. Introduction<\/h2>\n<p>In recent years, the importance of machine learning and deep learning technologies in financial markets has been increasing rapidly. New approaches utilizing not only traditional financial models but also unstructured data (e.g., social media, review sites, etc.) are gaining attention. This course will cover the development of trading systems using machine learning and deep learning, and we will delve deeply into how to establish trading strategies through sentiment analysis techniques using Twitter and Yelp data.<\/p>\n<h2>2. Overview of Machine Learning and Deep Learning<\/h2>\n<h3>2.1 What is Machine Learning?<\/h3>\n<p>Machine learning is an algorithm that learns patterns from data and makes predictions. There are various algorithms, primarily classified into supervised learning, unsupervised learning, and reinforcement learning.<\/p>\n<h3>2.2 What is Deep Learning?<\/h3>\n<p>Deep learning is a subset of machine learning that uses artificial neural networks to learn more complex patterns. It can automatically extract higher-level features through multi-layer neural networks.<\/p>\n<h2>3. Importance of Financial Markets and Data<\/h2>\n<p>Data in financial markets significantly influences buying and selling decisions. By utilizing not only price data but also unstructured data such as news, Twitter, and review data, market sentiment can be assessed to establish better trading strategies.<\/p>\n<h3>3.1 Insights from Data Sources<\/h3>\n<p>Social media platforms like Twitter and review platforms like Yelp provide vast amounts of real-time data that can be analyzed to understand consumer and investor sentiments.<\/p>\n<h2>4. Principles of Sentiment Analysis<\/h2>\n<p>Sentiment analysis is a method of identifying emotional states through text data. Common techniques include:<\/p>\n<ul>\n<li><strong>Lexicon-based methods:<\/strong> These methods analyze text using predefined lists of emotional words.<\/li>\n<li><strong>Machine learning-based methods:<\/strong> Text is transformed into vectors, and various machine learning algorithms can be used to predict sentiment.<\/li>\n<li><strong>Deep learning-based methods:<\/strong> Recurrent Neural Networks (RNN) such as LSTM and GRU are used to conduct sentiment analysis considering the context.<\/li>\n<\/ul>\n<h2>5. Data Collection Using the Twitter API<\/h2>\n<p>The Twitter API can be used to collect tweet data related to specific topics. To do this, you first need to create a Twitter developer account and obtain an API key, after which you can run the Python code below to collect data.<\/p>\n<pre><code>\nimport tweepy\n\n# Twitter API authentication\nconsumer_key = 'YOUR_CONSUMER_KEY'\nconsumer_secret = 'YOUR_CONSUMER_SECRET'\naccess_token = 'YOUR_ACCESS_TOKEN'\naccess_token_secret = 'YOUR_ACCESS_TOKEN_SECRET'\n\nauth = tweepy.OAuthHandler(consumer_key, consumer_secret)\nauth.set_access_token(access_token, access_token_secret)\napi = tweepy.API(auth)\n\n# Collect tweets with specific keywords\nkeyword = 'investment'\ntweets = api.search(q=keyword, count=100)\nfor tweet in tweets:\n    print(tweet.text)\n    <\/code><\/pre>\n<h2>6. Collecting and Processing Yelp Data<\/h2>\n<p>The Yelp API allows you to collect reviews for specific businesses. The following is an example of data collection using the Yelp API.<\/p>\n<pre><code>\nimport requests\n\n# Yelp API authentication\napi_key = 'YOUR_YELP_API_KEY'\nheaders = {'Authorization': 'Bearer ' + api_key}\nurl = 'https:\/\/api.yelp.com\/v3\/businesses\/search'\n\nparams = {\n    'term': 'restaurant',\n    'location': 'San Francisco'\n}\n\nresponse = requests.get(url, headers=headers, params=params)\nbusinesses = response.json()['businesses']\n\nfor business in businesses:\n    print(business['name'], business['rating'])\n    <\/code><\/pre>\n<h2>7. Data Preprocessing and Sentiment Analysis<\/h2>\n<p>The collected text data must undergo preprocessing. The preprocessing stage includes removing stopwords, tokenization, and lemmatization.<\/p>\n<h3>7.1 Example of Data Preprocessing<\/h3>\n<pre><code>\nimport pandas as pd\nfrom nltk.corpus import stopwords\nfrom nltk.tokenize import word_tokenize\nfrom nltk.stem import WordNetLemmatizer\n\n# Setting stopwords\nstop_words = set(stopwords.words('english'))\nlemmatizer = WordNetLemmatizer()\n\ndef preprocess_text(text):\n    tokens = word_tokenize(text)\n    tokens = [lemmatizer.lemmatize(word) for word in tokens if word not in stop_words]\n    return ' '.join(tokens)\n\n# Applying data preprocessing\ntweets_df['processed'] = tweets_df['text'].apply(preprocess_text)\n    <\/code><\/pre>\n<h3>7.2 Building a Sentiment Analysis Model<\/h3>\n<p>Now, you can build machine learning or deep learning models using the preprocessed data. Below is an example of implementing an LSTM model for sentiment analysis.<\/p>\n<pre><code>\nfrom keras.models import Sequential\nfrom keras.layers import LSTM, Dense, Embedding, SpatialDropout1D\nfrom keras.preprocessing.sequence import pad_sequences\n\nmax_features = 20000\nmax_len = 100\n\n# Building the LSTM model\nmodel = Sequential()\nmodel.add(Embedding(max_features, 128))\nmodel.add(SpatialDropout1D(0.2))\nmodel.add(LSTM(100))\nmodel.add(Dense(1, activation='sigmoid'))\n\nmodel.compile(loss='binary_crossentropy', optimizer='adam', metrics=['accuracy'])\nmodel.summary()\n    <\/code><\/pre>\n<h2>8. Developing Trading Strategies<\/h2>\n<p>Trading strategies can be established using the results of sentiment analysis. For example, strategies can be developed to buy when sentiment is positive and to sell when sentiment is negative.<\/p>\n<h3>8.1 Generating Trading Signals<\/h3>\n<p>You can write logic to generate buy and sell signals based on sentiment scores. The example code is as follows.<\/p>\n<pre><code>\ndef generate_signals(sentiment_score):\n    if sentiment_score > 0.5:\n        return 'buy'\n    elif sentiment_score < 0.5:\n        return 'sell'\n    else:\n        return 'hold'\n\ndf['signal'] = df['sentiment_score'].apply(generate_signals)\n    <\/code><\/pre>\n<h2>9. Performance Analysis and Result Evaluation<\/h2>\n<p>Finally, the performance of the developed trading strategy should be analyzed to evaluate returns. Various metrics are used to assess risk-adjusted returns, maximum drawdowns, etc.<\/p>\n<h3>9.1 Performance Evaluation Metrics<\/h3>\n<ul>\n<li><strong>Sharpe Ratio:<\/strong> Indicates excess returns per unit of risk.<\/li>\n<li><strong>Drawdown:<\/strong> Measures the maximum extent of loss.<\/li>\n<li><strong>Alpha:<\/strong> Returns achieved by the manager above the market.<\/li>\n<\/ul>\n<h2>10. Conclusion<\/h2>\n<p>In this course, we explored how to develop trading strategies based on machine learning and deep learning through sentiment analysis using Twitter and Yelp data. This will enable the construction of more sophisticated trading systems. It is important to continuously improve strategies using various techniques and data observed in this process.<\/p>\n<h3>10.1 References<\/h3>\n<ul>\n<li><a href=\"https:\/\/www.analyticsvidhya.com\/blog\/2020\/03\/stock-market-prediction-using-machine-learning-in-python\/\">Stock Market Prediction Using Machine Learning<\/a><\/li>\n<li><a href=\"https:\/\/towardsdatascience.com\/sentiment-analysis-for-beginners-using-nltk-and-scikit-learn-7b06178f0f14\">Sentiment Analysis for Beginners<\/a><\/li>\n<li><a href=\"https:\/\/keras.io\/\">Keras Documentation<\/a><\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. Introduction In recent years, the importance of machine learning and deep learning technologies in financial markets has been increasing rapidly. New approaches utilizing not only traditional financial models but also unstructured data (e.g., social media, review sites, etc.) are gaining attention. This course will cover the development of trading systems using machine learning and &hellip; <a href=\"https:\/\/atmokpo.com\/w\/35965\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Machine Learning and Deep Learning Algorithm Trading, Sentiment Analysis Using Twitter and Yelp Data&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[121],"tags":[],"class_list":["post-35965","post","type-post","status-publish","format-standard","hentry","category-deep-learning-automated-trading"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Machine Learning and Deep Learning Algorithm Trading, Sentiment Analysis Using Twitter and Yelp Data - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/35965\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Machine Learning and Deep Learning Algorithm Trading, Sentiment Analysis Using Twitter and Yelp Data - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"1. Introduction In recent years, the importance of machine learning and deep learning technologies in financial markets has been increasing rapidly. New approaches utilizing not only traditional financial models but also unstructured data (e.g., social media, review sites, etc.) are gaining attention. This course will cover the development of trading systems using machine learning and &hellip; \ub354 \ubcf4\uae30 &quot;Machine Learning and Deep Learning Algorithm Trading, Sentiment Analysis Using Twitter and Yelp Data&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/35965\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:44:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:09:42+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"4\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/35965\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35965\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Machine Learning and Deep Learning Algorithm Trading, Sentiment Analysis Using Twitter and Yelp Data\",\"datePublished\":\"2024-11-01T09:44:17+00:00\",\"dateModified\":\"2024-11-01T11:09:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35965\/\"},\"wordCount\":617,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/35965\/\",\"url\":\"https:\/\/atmokpo.com\/w\/35965\/\",\"name\":\"Machine Learning and Deep Learning Algorithm Trading, Sentiment Analysis Using Twitter and Yelp Data - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:44:17+00:00\",\"dateModified\":\"2024-11-01T11:09:42+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35965\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/35965\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/35965\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Machine Learning and Deep Learning Algorithm Trading, Sentiment Analysis Using Twitter and Yelp Data\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Machine Learning and Deep Learning Algorithm Trading, Sentiment Analysis Using Twitter and Yelp Data - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/35965\/","og_locale":"ko_KR","og_type":"article","og_title":"Machine Learning and Deep Learning Algorithm Trading, Sentiment Analysis Using Twitter and Yelp Data - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"1. Introduction In recent years, the importance of machine learning and deep learning technologies in financial markets has been increasing rapidly. New approaches utilizing not only traditional financial models but also unstructured data (e.g., social media, review sites, etc.) are gaining attention. This course will cover the development of trading systems using machine learning and &hellip; \ub354 \ubcf4\uae30 \"Machine Learning and Deep Learning Algorithm Trading, Sentiment Analysis Using Twitter and Yelp Data\"","og_url":"https:\/\/atmokpo.com\/w\/35965\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:44:17+00:00","article_modified_time":"2024-11-01T11:09:42+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"4\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/35965\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/35965\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Machine Learning and Deep Learning Algorithm Trading, Sentiment Analysis Using Twitter and Yelp Data","datePublished":"2024-11-01T09:44:17+00:00","dateModified":"2024-11-01T11:09:42+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/35965\/"},"wordCount":617,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/35965\/","url":"https:\/\/atmokpo.com\/w\/35965\/","name":"Machine Learning and Deep Learning Algorithm Trading, Sentiment Analysis Using Twitter and Yelp Data - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:44:17+00:00","dateModified":"2024-11-01T11:09:42+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/35965\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/35965\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/35965\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Machine Learning and Deep Learning Algorithm Trading, Sentiment Analysis Using Twitter and Yelp Data"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35965","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=35965"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35965\/revisions"}],"predecessor-version":[{"id":35966,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35965\/revisions\/35966"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=35965"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=35965"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=35965"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}