{"id":37867,"date":"2024-11-01T10:01:06","date_gmt":"2024-11-01T10:01:06","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37867"},"modified":"2024-11-01T11:09:13","modified_gmt":"2024-11-01T11:09:13","slug":"automated-trading-using-deep-learning-and-machine-learning-data-collection-and-preprocessing-real-time-price-data-collection-using-exchange-apis-preprocessing-techniques-such-as-data-cleaning-and-n","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37867\/","title":{"rendered":"Automated trading using deep learning and machine learning, data collection and preprocessing, real-time price data collection using exchange APIs, preprocessing techniques such as data cleaning and normalization."},"content":{"rendered":"<article>\n<header>\n<p>Author: [Author Name]<\/p>\n<p>Published on: [Published Date]<\/p>\n<\/header>\n<section>\n<h2>Introduction<\/h2>\n<p>As the volatility of cryptocurrency markets like Bitcoin increases, automated trading systems utilizing machine learning and deep learning are gaining attention. These systems are designed to analyze real-time price data and automatically make buy or sell decisions. In this article, we will detail the preprocessing techniques used to organize and normalize the collected data alongside the real-time price data collection using exchange APIs.<\/p>\n<\/section>\n<section>\n<h2>1. Real-Time Price Data Collection Using Exchange APIs<\/h2>\n<p>Cryptocurrency exchanges provide APIs that allow users to collect real-time price data. Here, we will take Binance, one of the representative exchanges, as an example to explain how to collect real-time price data.<\/p>\n<h3>1.1 Obtaining Binance API Key<\/h3>\n<p>To use the Binance API, you first need to obtain an API key. Follow the steps below to create an API key:<\/p>\n<ol>\n<li>Log in to your Binance account.<\/li>\n<li>Click on &#8216;API Management&#8217; from the top menu.<\/li>\n<li>Create a new API key and store it in a safe place.<\/li>\n<li>Access the API using the API key and secret key.<\/li>\n<\/ol>\n<h3>1.2 Using Binance API in Python<\/h3>\n<p>To access the Binance API using Python, install the <code>ccxt<\/code> library. This library is a useful tool that integrates and manages APIs from multiple exchanges.<\/p>\n<pre><code class=\"language-bash\">pip install ccxt<\/code><\/pre>\n<p>The following code is an example of collecting real-time Bitcoin (BTC) price data from Binance.<\/p>\n<pre><code class=\"language-python\">import ccxt\nimport time\n\n# Create a Binance API object\nbinance = ccxt.binance({'enableRateLimit': True})\n\ndef fetch_btc_price():\n    # Collect Bitcoin price data\n    ticker = binance.fetch_ticker('BTC\/USDT')\n    return ticker['last']\n\nwhile True:\n    price = fetch_btc_price()\n    print(f'Current Bitcoin Price: {price} USDT')\n    time.sleep(5)  # Updates the price every 5 seconds.<\/code><\/pre>\n<\/section>\n<section>\n<h2>2. Data Collection and Storage<\/h2>\n<p>We use the pandas library to store the collected data. This allows us to create a data frame and save it as a CSV file.<\/p>\n<h3>2.1 Installing the Pandas Library<\/h3>\n<pre><code class=\"language-bash\">pip install pandas<\/code><\/pre>\n<h3>2.2 Example Code for Creating a Data Frame and Saving as CSV<\/h3>\n<p>The code below shows how to convert the collected Bitcoin price data into a data frame and save it as a CSV file.<\/p>\n<pre><code class=\"language-python\">import pandas as pd\n\n# Create an empty data frame\ndf = pd.DataFrame(columns=[\"timestamp\", \"price\"])\n\nwhile True:\n    price = fetch_btc_price()\n    timestamp = pd.Timestamp.now()\n    \n    # Add data\n    df = df.append({\"timestamp\": timestamp, \"price\": price}, ignore_index=True)\n    \n    # Save to file every 5 minutes\n    if len(df) % 60 == 0:  # Collect one data point every 5 minutes\n        df.to_csv('btc_price_data.csv', index=False)\n        print(\"Data has been saved to CSV file.\")\n    \n    time.sleep(5)  # Updates the price every 5 seconds.<\/code><\/pre>\n<\/section>\n<section>\n<h2>3. Preprocessing Collected Data<\/h2>\n<p>After data collection, it is essential to preprocess the data before training the machine learning model. The preprocessing aims to improve data quality and maximize learning effectiveness.<\/p>\n<h3>3.1 Data Cleaning<\/h3>\n<p>Data cleaning involves tasks such as handling missing values and removing duplicates.<\/p>\n<h3>3.2 Handling Missing Values<\/h3>\n<pre><code class=\"language-python\"># Handling missing values\ndf = df.fillna(method='ffill')  # Fill missing values with the previous value<\/code><\/pre>\n<h3>3.3 Removing Duplicates<\/h3>\n<pre><code class=\"language-python\"># Remove duplicates\ndf = df.drop_duplicates(subset=[\"timestamp\"], keep='last')<\/code><\/pre>\n<h3>3.4 Data Normalization<\/h3>\n<p>To enhance the efficiency of machine learning models, we normalize the data. Here, we will use Min-Max normalization.<\/p>\n<pre><code class=\"language-python\"># Min-Max normalization\nfrom sklearn.preprocessing import MinMaxScaler\n\nscaler = MinMaxScaler()\ndf['normalized_price'] = scaler.fit_transform(df[['price']])<\/code><\/pre>\n<\/section>\n<section>\n<h2>4. Applying Machine Learning Models<\/h2>\n<p>Based on the preprocessed data, we can train a machine learning model. Here, we will implement a price prediction model using a simple LSTM (Long Short-Term Memory) model.<\/p>\n<h3>4.1 Data Transformation for LSTM Model<\/h3>\n<p>The LSTM model is suitable for time series data. The data must be split into a consistent temporal order for model input. The code below shows how to create the dataset.<\/p>\n<pre><code class=\"language-python\">import numpy as np\n\ndef create_dataset(data, time_step=1):\n    X, Y = [], []\n    for i in range(len(data)-time_step-1):\n        X.append(data[i:(i+time_step), 0])\n        Y.append(data[i + time_step, 0])\n    return np.array(X), np.array(Y)\n\n# Convert to normalized data\ndata = df['normalized_price'].values\ndata = data.reshape(-1, 1)\n\n# Create dataset\nX, Y = create_dataset(data, time_step=10)\nX = X.reshape(X.shape[0], X.shape[1], 1)  # LSTM input shape\n<\/code><\/pre>\n<h3>4.2 Building and Training the LSTM Model<\/h3>\n<pre><code class=\"language-python\">from keras.models import Sequential\nfrom keras.layers import LSTM, Dense, Dropout\n\n# Create LSTM model\nmodel = Sequential()\nmodel.add(LSTM(units=50, return_sequences=True, input_shape=(X.shape[1], 1)))\nmodel.add(Dropout(0.2))\nmodel.add(LSTM(units=50, return_sequences=False))\nmodel.add(Dropout(0.2))\nmodel.add(Dense(units=1))  # Predict next price\n\nmodel.compile(optimizer='adam', loss='mean_squared_error')\n\n# Train the model\nmodel.fit(X, Y, epochs=50, batch_size=32)<\/code><\/pre>\n<\/section>\n<section>\n<h2>Conclusion<\/h2>\n<p>This article provided a detailed explanation of the components of an automated Bitcoin trading system utilizing deep learning and machine learning, specifically focusing on data collection and preprocessing. We explored the process of collecting real-time price data using the Binance API, structuring the data with pandas, and learning an LSTM model through normalization and time series dataset creation. This process is a fundamental aspect of building a basic automated trading system.<\/p>\n<p>In the future, this model can be improved for better predictive performance through more complex strategies, feature tuning, and hyperparameter adjustments. Implementing a Bitcoin automated trading system is a time- and effort-intensive process, and continuous data collection and model improvement are essential.<\/p>\n<\/section>\n<footer>\n<p>I hope this article helps with implementing automated trading systems using deep learning and machine learning. If you have any additional questions or discussions, please leave a comment!<\/p>\n<\/footer>\n<\/article>\n","protected":false},"excerpt":{"rendered":"<p>Author: [Author Name] Published on: [Published Date] Introduction As the volatility of cryptocurrency markets like Bitcoin increases, automated trading systems utilizing machine learning and deep learning are gaining attention. These systems are designed to analyze real-time price data and automatically make buy or sell decisions. In this article, we will detail the preprocessing techniques used &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37867\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Automated trading using deep learning and machine learning, data collection and preprocessing, real-time price data collection using exchange APIs, preprocessing techniques such as data cleaning and normalization.&#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-37867","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>Automated trading using deep learning and machine learning, data collection and preprocessing, real-time price data collection using exchange APIs, preprocessing techniques such as data cleaning and normalization. - \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\/37867\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Automated trading using deep learning and machine learning, data collection and preprocessing, real-time price data collection using exchange APIs, preprocessing techniques such as data cleaning and normalization. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Author: [Author Name] Published on: [Published Date] Introduction As the volatility of cryptocurrency markets like Bitcoin increases, automated trading systems utilizing machine learning and deep learning are gaining attention. These systems are designed to analyze real-time price data and automatically make buy or sell decisions. In this article, we will detail the preprocessing techniques used &hellip; \ub354 \ubcf4\uae30 &quot;Automated trading using deep learning and machine learning, data collection and preprocessing, real-time price data collection using exchange APIs, preprocessing techniques such as data cleaning and normalization.&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37867\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T10:01:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:09:13+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\/37867\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37867\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Automated trading using deep learning and machine learning, data collection and preprocessing, real-time price data collection using exchange APIs, preprocessing techniques such as data cleaning and normalization.\",\"datePublished\":\"2024-11-01T10:01:06+00:00\",\"dateModified\":\"2024-11-01T11:09:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37867\/\"},\"wordCount\":596,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37867\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37867\/\",\"name\":\"Automated trading using deep learning and machine learning, data collection and preprocessing, real-time price data collection using exchange APIs, preprocessing techniques such as data cleaning and normalization. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T10:01:06+00:00\",\"dateModified\":\"2024-11-01T11:09:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37867\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37867\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37867\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Automated trading using deep learning and machine learning, data collection and preprocessing, real-time price data collection using exchange APIs, preprocessing techniques such as data cleaning and normalization.\"}]},{\"@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":"Automated trading using deep learning and machine learning, data collection and preprocessing, real-time price data collection using exchange APIs, preprocessing techniques such as data cleaning and normalization. - \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\/37867\/","og_locale":"ko_KR","og_type":"article","og_title":"Automated trading using deep learning and machine learning, data collection and preprocessing, real-time price data collection using exchange APIs, preprocessing techniques such as data cleaning and normalization. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Author: [Author Name] Published on: [Published Date] Introduction As the volatility of cryptocurrency markets like Bitcoin increases, automated trading systems utilizing machine learning and deep learning are gaining attention. These systems are designed to analyze real-time price data and automatically make buy or sell decisions. In this article, we will detail the preprocessing techniques used &hellip; \ub354 \ubcf4\uae30 \"Automated trading using deep learning and machine learning, data collection and preprocessing, real-time price data collection using exchange APIs, preprocessing techniques such as data cleaning and normalization.\"","og_url":"https:\/\/atmokpo.com\/w\/37867\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T10:01:06+00:00","article_modified_time":"2024-11-01T11:09:13+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\/37867\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37867\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Automated trading using deep learning and machine learning, data collection and preprocessing, real-time price data collection using exchange APIs, preprocessing techniques such as data cleaning and normalization.","datePublished":"2024-11-01T10:01:06+00:00","dateModified":"2024-11-01T11:09:13+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37867\/"},"wordCount":596,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37867\/","url":"https:\/\/atmokpo.com\/w\/37867\/","name":"Automated trading using deep learning and machine learning, data collection and preprocessing, real-time price data collection using exchange APIs, preprocessing techniques such as data cleaning and normalization. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T10:01:06+00:00","dateModified":"2024-11-01T11:09:13+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37867\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37867\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37867\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Automated trading using deep learning and machine learning, data collection and preprocessing, real-time price data collection using exchange APIs, preprocessing techniques such as data cleaning and normalization."}]},{"@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\/37867","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=37867"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37867\/revisions"}],"predecessor-version":[{"id":37868,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37867\/revisions\/37868"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37867"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37867"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37867"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}