{"id":336,"date":"2017-12-16T11:10:49","date_gmt":"2017-12-16T11:10:49","guid":{"rendered":"https:\/\/eodhd.com\/knowledgebase\/?p=336"},"modified":"2024-04-24T13:35:03","modified_gmt":"2024-04-24T11:35:03","slug":"php-laravel-example","status":"publish","type":"post","link":"https:\/\/eodhd.com\/financial-apis\/php-laravel-example","title":{"rendered":"PHP\/Laravel Example"},"content":{"rendered":"<p>EOD Historical Data API Client Wrapper (Financial and Stock Market API) for Laravel\/PHP.<\/p>\n<p>You can find the Wrapper on Github page:&nbsp;<a href=\"https:\/\/github.com\/radicalloop\/eodhistoricaldata\" target=\"_blank\" rel=\"noopener\">https:\/\/github.com\/radicalloop\/eodhistoricaldata<\/a>.<\/p>\n<h3>Features<\/h3>\n<ul>\n<li>Easy installation with Composer<\/li>\n<li>No configuration required for Laravel &gt;= 5.5+, It will use the auto-discovery function.<\/li>\n<li>Easy to use<\/li>\n<\/ul>\n<h3>Stocks API Example<\/h3>\n<blockquote>\n<pre><span class=\"pl-s1\"><span class=\"pl-k\">use<\/span> <span class=\"pl-c1\">Eod<\/span>;<\/span>\n\n<span class=\"pl-s1\"><span class=\"pl-smi\">$stock<\/span> <span class=\"pl-k\">=<\/span> <span class=\"pl-c1\">Eod<\/span><span class=\"pl-k\">::<\/span>stock();<\/span>\n\n<span class=\"pl-s1\"><span class=\"pl-c\">\/\/ JSON <\/span><\/span>\n<span class=\"pl-s1\"><span class=\"pl-smi\">$stock<\/span><span class=\"pl-k\">-&gt;<\/span>realTime(<span class=\"pl-s\"><span class=\"pl-pds\">'<\/span>AAPL.US<span class=\"pl-pds\">'<\/span><\/span>)<span class=\"pl-k\">-&gt;<\/span>json();<\/span>\n<span class=\"pl-s1\"><span class=\"pl-smi\">$stock<\/span><span class=\"pl-k\">-&gt;<\/span>eod(<span class=\"pl-s\"><span class=\"pl-pds\">'<\/span>AAPL.US<span class=\"pl-pds\">'<\/span><\/span>)<span class=\"pl-k\">-&gt;<\/span>json();<\/span>\n\n<span class=\"pl-s1\"><span class=\"pl-c\">\/\/ Download CSV <\/span><\/span>\n<span class=\"pl-s1\"><span class=\"pl-smi\">$stock<\/span><span class=\"pl-k\">-&gt;<\/span>realTime(<span class=\"pl-s\"><span class=\"pl-pds\">'<\/span>AAPL.US<span class=\"pl-pds\">'<\/span><\/span> [<span class=\"pl-s\"><span class=\"pl-pds\">'<\/span>s<span class=\"pl-pds\">'<\/span><\/span> <span class=\"pl-k\">=&gt;<\/span> [<span class=\"pl-s\"><span class=\"pl-pds\">'<\/span>VTI<span class=\"pl-pds\">'<\/span><\/span>,<span class=\"pl-s\"><span class=\"pl-pds\">'<\/span>EUR<span class=\"pl-pds\">'<\/span><\/span>,<span class=\"pl-s\"><span class=\"pl-pds\">'<\/span>FX<span class=\"pl-pds\">'<\/span><\/span>]])<span class=\"pl-k\">-&gt;<\/span>download();<\/span>\n<span class=\"pl-s1\"><span class=\"pl-smi\">$stock<\/span><span class=\"pl-k\">-&gt;<\/span>eod(<span class=\"pl-s\"><span class=\"pl-pds\">'<\/span>AAPL.US<span class=\"pl-pds\">'<\/span><\/span>)<span class=\"pl-k\">-&gt;<\/span>download();<\/span>\n\n<span class=\"pl-s1\"><span class=\"pl-c\">\/\/ Save CSV to specific path<\/span><\/span>\n<span class=\"pl-s1\"><span class=\"pl-smi\">$stock<\/span><span class=\"pl-k\">-&gt;<\/span>realTime(<span class=\"pl-s\"><span class=\"pl-pds\">'<\/span>AAPL.US<span class=\"pl-pds\">'<\/span><\/span>)<span class=\"pl-k\">-&gt;<\/span>save(<span class=\"pl-s\"><span class=\"pl-pds\">'<\/span>path\/to\/save\/csv\/stock.csv<span class=\"pl-pds\">'<\/span><\/span>);<\/span>\n\n<span class=\"pl-s1\"><span class=\"pl-c\">\/\/ For other parameters, for ex. dividend api with other params<\/span><\/span>\n<span class=\"pl-s1\"><span class=\"pl-smi\">$stock<\/span><span class=\"pl-k\">-&gt;<\/span>dividend(<span class=\"pl-s\"><span class=\"pl-pds\">'<\/span>AAPL.US<span class=\"pl-pds\">'<\/span><\/span>, [<span class=\"pl-s\"><span class=\"pl-pds\">'<\/span>from<span class=\"pl-pds\">'<\/span><\/span> <span class=\"pl-k\">=&gt;<\/span> <span class=\"pl-s\"><span class=\"pl-pds\">'<\/span>2017-01-01<span class=\"pl-pds\">'<\/span><\/span>])<span class=\"pl-k\">-&gt;<\/span>json();\n<\/span><\/pre>\n<\/blockquote>\n<h3>Exchanges API Example<\/h3>\n<div class=\"highlight highlight-text-html-php\">\n<blockquote>\n<pre><span class=\"pl-s1\"><span class=\"pl-k\">use<\/span> <span class=\"pl-c1\">Eod<\/span>;<\/span>\n\n<span class=\"pl-s1\"><span class=\"pl-smi\">$exchange<\/span> <span class=\"pl-k\">=<\/span> <span class=\"pl-c1\">Eod<\/span><span class=\"pl-k\">::<\/span>exchange();<\/span>\n\n<span class=\"pl-s1\"><span class=\"pl-c\">\/\/ JSON <\/span><\/span>\n<span class=\"pl-s1\"><span class=\"pl-smi\">$exchange<\/span><span class=\"pl-k\">-&gt;<\/span>symbol(<span class=\"pl-s\"><span class=\"pl-pds\">'<\/span>US<span class=\"pl-pds\">'<\/span><\/span>)<span class=\"pl-k\">-&gt;<\/span>json();<\/span>\n<span class=\"pl-s1\"><span class=\"pl-smi\">$exchange<\/span><span class=\"pl-k\">-&gt;<\/span>multipleTicker(<span class=\"pl-s\"><span class=\"pl-pds\">'<\/span>US<span class=\"pl-pds\">'<\/span><\/span>)<span class=\"pl-k\">-&gt;<\/span>json();<\/span>\n\n<span class=\"pl-s1\"><span class=\"pl-c\">\/\/ Download CSV <\/span><\/span>\n<span class=\"pl-s1\"><span class=\"pl-smi\">$exchange<\/span><span class=\"pl-k\">-&gt;<\/span>symbol(<span class=\"pl-s\"><span class=\"pl-pds\">'<\/span>US<span class=\"pl-pds\">'<\/span><\/span>)<span class=\"pl-k\">-&gt;<\/span>download();<\/span>\n<span class=\"pl-s1\"><span class=\"pl-smi\">$exchange<\/span><span class=\"pl-k\">-&gt;<\/span>multipleTicker(<span class=\"pl-s\"><span class=\"pl-pds\">'<\/span>US<span class=\"pl-pds\">'<\/span><\/span>)<span class=\"pl-k\">-&gt;<\/span>download();<\/span>\n\n<span class=\"pl-s1\"><span class=\"pl-c\">\/\/ Save CSV to specific path<\/span><\/span>\n<span class=\"pl-s1\"><span class=\"pl-smi\">$exchange<\/span><span class=\"pl-k\">-&gt;<\/span>symbol(<span class=\"pl-s\"><span class=\"pl-pds\">'<\/span>US<span class=\"pl-pds\">'<\/span><\/span>)<span class=\"pl-k\">-&gt;<\/span>save(<span class=\"pl-s\"><span class=\"pl-pds\">'<\/span>path\/to\/save\/csv\/stock.csv<span class=\"pl-pds\">'<\/span><\/span>);\n<\/span><\/pre>\n<\/blockquote>\n<\/div>\n<p>You can find more on Github page:&nbsp;<a href=\"https:\/\/github.com\/radicalloop\/eodhistoricaldata\" target=\"_blank\" rel=\"noopener\">https:\/\/github.com\/radicalloop\/eodhistoricaldata<\/a>.<\/p>\n<p>Thanks to&nbsp;<a href=\"https:\/\/www.radicalloop.com\/\" target=\"_blank\" rel=\"noopener\">RadicalLoop<\/a> for it!<\/p>\n\n\n<p class=\"has-text-align-center\"><a class=\"maxbutton-1 maxbutton maxbutton-subscribe-to-api external-css btn\" href=\"https:\/\/eodhd.com\/register\"><span class='mb-text'>Sign up &amp; Get Data<\/span><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>EOD Historical Data API Client Wrapper (Financial and Stock Market API) for Laravel\/PHP. You can find the Wrapper on Github page:&nbsp;https:\/\/github.com\/radicalloop\/eodhistoricaldata. Features Easy installation with Composer No configuration required for Laravel &gt;= 5.5+, It will use the auto-discovery function. Easy to use Stocks API Example use Eod; $stock = Eod::stock(); \/\/ JSON $stock-&gt;realTime(&#8216;AAPL.US&#8217;)-&gt;json(); $stock-&gt;eod(&#8216;AAPL.US&#8217;)-&gt;json(); \/\/ [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":4482,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[5],"tags":[],"coding-language":[],"ready-to-go-solution":[],"qualification":[],"financial-apis-category":[],"financial-apis-manuals":[],"class_list":["post-336","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-excel-python-php-laravel-java-matlab-examples","has_thumb"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.6 (Yoast SEO v26.7) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>PHP\/Laravel Example | EODHD APIs Documentation<\/title>\n<meta name=\"description\" content=\"Learn how to integrate the EOD Historical Data API client wrapper into your Laravel\/PHP project. Easy installation and usage\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/eodhd.com\/financial-apis\/php-laravel-example\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PHP\/Laravel Example\" \/>\n<meta property=\"og:description\" content=\"Learn how to integrate the EOD Historical Data API client wrapper into your Laravel\/PHP project. Easy installation and usage\" \/>\n<meta property=\"og:url\" content=\"https:\/\/eodhd.com\/financial-apis\/php-laravel-example\" \/>\n<meta property=\"og:site_name\" content=\"Stock Price Data, Financial and Stock Market API\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/eodhistoricaldata\" \/>\n<meta property=\"article:published_time\" content=\"2017-12-16T11:10:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-24T11:35:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/eodhd.com\/financial-apis\/wp-content\/uploads\/2017\/12\/PHP-Laravel-Example-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"270\" \/>\n\t<meta property=\"og:image:height\" content=\"270\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"EOD Historical Data Support\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@EOD_data\" \/>\n<meta name=\"twitter:site\" content=\"@EOD_data\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"EOD Historical Data Support\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/eodhd.com\/financial-apis\/php-laravel-example#article\",\"isPartOf\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis\/php-laravel-example\"},\"author\":{\"name\":\"EOD Historical Data Support\",\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#\/schema\/person\/fa5be3606e0cd967a175978cebe97415\"},\"headline\":\"PHP\/Laravel Example\",\"datePublished\":\"2017-12-16T11:10:49+00:00\",\"dateModified\":\"2024-04-24T11:35:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis\/php-laravel-example\"},\"wordCount\":78,\"publisher\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#organization\"},\"image\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis\/php-laravel-example#primaryimage\"},\"thumbnailUrl\":\"https:\/\/eodhd.com\/financial-apis\/wp-content\/uploads\/2017\/12\/PHP-Laravel-Example-1.png\",\"articleSection\":[\"5. Developer Tools &amp; Examples\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/eodhd.com\/financial-apis\/php-laravel-example\",\"url\":\"https:\/\/eodhd.com\/financial-apis\/php-laravel-example\",\"name\":\"PHP\/Laravel Example | EODHD APIs Documentation\",\"isPartOf\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis\/php-laravel-example#primaryimage\"},\"image\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis\/php-laravel-example#primaryimage\"},\"thumbnailUrl\":\"https:\/\/eodhd.com\/financial-apis\/wp-content\/uploads\/2017\/12\/PHP-Laravel-Example-1.png\",\"datePublished\":\"2017-12-16T11:10:49+00:00\",\"dateModified\":\"2024-04-24T11:35:03+00:00\",\"description\":\"Learn how to integrate the EOD Historical Data API client wrapper into your Laravel\/PHP project. Easy installation and usage\",\"breadcrumb\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis\/php-laravel-example#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/eodhd.com\/financial-apis\/php-laravel-example\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eodhd.com\/financial-apis\/php-laravel-example#primaryimage\",\"url\":\"https:\/\/eodhd.com\/financial-apis\/wp-content\/uploads\/2017\/12\/PHP-Laravel-Example-1.png\",\"contentUrl\":\"https:\/\/eodhd.com\/financial-apis\/wp-content\/uploads\/2017\/12\/PHP-Laravel-Example-1.png\",\"width\":270,\"height\":270,\"caption\":\"PHP\/Laravel Example\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/eodhd.com\/financial-apis\/php-laravel-example#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/eodhd.com\/financial-apis\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PHP\/Laravel Example\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#website\",\"url\":\"https:\/\/eodhd.com\/financial-apis\/\",\"name\":\"Historical Stock Prices and Fundamental Financial Data APIs | EODHD\",\"description\":\"End Of Day (EOD), Fundamental and Real-time\/Live Data Market API\",\"publisher\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/eodhd.com\/financial-apis\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#organization\",\"name\":\"EODHD (EOD Historical Data)\",\"url\":\"https:\/\/eodhd.com\/financial-apis\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/eodhd.com\/financial-apis\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png\",\"contentUrl\":\"https:\/\/eodhd.com\/financial-apis\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png\",\"width\":159,\"height\":82,\"caption\":\"EODHD (EOD Historical Data)\"},\"image\":{\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/eodhistoricaldata\",\"https:\/\/x.com\/EOD_data\",\"https:\/\/www.reddit.com\/r\/EODHistoricalData\/\",\"https:\/\/eod-historical-data.medium.com\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#\/schema\/person\/fa5be3606e0cd967a175978cebe97415\",\"name\":\"EOD Historical Data Support\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eodhd.com\/financial-apis\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3599a531133e7fc83654b72e3103c05b1bbeb91168cf4786cbad64afa9b82413?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3599a531133e7fc83654b72e3103c05b1bbeb91168cf4786cbad64afa9b82413?s=96&d=mm&r=g\",\"caption\":\"EOD Historical Data Support\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"PHP\/Laravel Example | EODHD APIs Documentation","description":"Learn how to integrate the EOD Historical Data API client wrapper into your Laravel\/PHP project. Easy installation and usage","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:\/\/eodhd.com\/financial-apis\/php-laravel-example","og_locale":"en_US","og_type":"article","og_title":"PHP\/Laravel Example","og_description":"Learn how to integrate the EOD Historical Data API client wrapper into your Laravel\/PHP project. Easy installation and usage","og_url":"https:\/\/eodhd.com\/financial-apis\/php-laravel-example","og_site_name":"Stock Price Data, Financial and Stock Market API","article_publisher":"https:\/\/www.facebook.com\/eodhistoricaldata","article_published_time":"2017-12-16T11:10:49+00:00","article_modified_time":"2024-04-24T11:35:03+00:00","og_image":[{"width":270,"height":270,"url":"https:\/\/eodhd.com\/financial-apis\/wp-content\/uploads\/2017\/12\/PHP-Laravel-Example-1.png","type":"image\/png"}],"author":"EOD Historical Data Support","twitter_card":"summary_large_image","twitter_creator":"@EOD_data","twitter_site":"@EOD_data","twitter_misc":{"Written by":"EOD Historical Data Support","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/eodhd.com\/financial-apis\/php-laravel-example#article","isPartOf":{"@id":"https:\/\/eodhd.com\/financial-apis\/php-laravel-example"},"author":{"name":"EOD Historical Data Support","@id":"https:\/\/eodhd.com\/financial-apis\/#\/schema\/person\/fa5be3606e0cd967a175978cebe97415"},"headline":"PHP\/Laravel Example","datePublished":"2017-12-16T11:10:49+00:00","dateModified":"2024-04-24T11:35:03+00:00","mainEntityOfPage":{"@id":"https:\/\/eodhd.com\/financial-apis\/php-laravel-example"},"wordCount":78,"publisher":{"@id":"https:\/\/eodhd.com\/financial-apis\/#organization"},"image":{"@id":"https:\/\/eodhd.com\/financial-apis\/php-laravel-example#primaryimage"},"thumbnailUrl":"https:\/\/eodhd.com\/financial-apis\/wp-content\/uploads\/2017\/12\/PHP-Laravel-Example-1.png","articleSection":["5. Developer Tools &amp; Examples"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/eodhd.com\/financial-apis\/php-laravel-example","url":"https:\/\/eodhd.com\/financial-apis\/php-laravel-example","name":"PHP\/Laravel Example | EODHD APIs Documentation","isPartOf":{"@id":"https:\/\/eodhd.com\/financial-apis\/#website"},"primaryImageOfPage":{"@id":"https:\/\/eodhd.com\/financial-apis\/php-laravel-example#primaryimage"},"image":{"@id":"https:\/\/eodhd.com\/financial-apis\/php-laravel-example#primaryimage"},"thumbnailUrl":"https:\/\/eodhd.com\/financial-apis\/wp-content\/uploads\/2017\/12\/PHP-Laravel-Example-1.png","datePublished":"2017-12-16T11:10:49+00:00","dateModified":"2024-04-24T11:35:03+00:00","description":"Learn how to integrate the EOD Historical Data API client wrapper into your Laravel\/PHP project. Easy installation and usage","breadcrumb":{"@id":"https:\/\/eodhd.com\/financial-apis\/php-laravel-example#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/eodhd.com\/financial-apis\/php-laravel-example"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eodhd.com\/financial-apis\/php-laravel-example#primaryimage","url":"https:\/\/eodhd.com\/financial-apis\/wp-content\/uploads\/2017\/12\/PHP-Laravel-Example-1.png","contentUrl":"https:\/\/eodhd.com\/financial-apis\/wp-content\/uploads\/2017\/12\/PHP-Laravel-Example-1.png","width":270,"height":270,"caption":"PHP\/Laravel Example"},{"@type":"BreadcrumbList","@id":"https:\/\/eodhd.com\/financial-apis\/php-laravel-example#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/eodhd.com\/financial-apis"},{"@type":"ListItem","position":2,"name":"PHP\/Laravel Example"}]},{"@type":"WebSite","@id":"https:\/\/eodhd.com\/financial-apis\/#website","url":"https:\/\/eodhd.com\/financial-apis\/","name":"Historical Stock Prices and Fundamental Financial Data APIs | EODHD","description":"End Of Day (EOD), Fundamental and Real-time\/Live Data Market API","publisher":{"@id":"https:\/\/eodhd.com\/financial-apis\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/eodhd.com\/financial-apis\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/eodhd.com\/financial-apis\/#organization","name":"EODHD (EOD Historical Data)","url":"https:\/\/eodhd.com\/financial-apis\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eodhd.com\/financial-apis\/#\/schema\/logo\/image\/","url":"https:\/\/eodhd.com\/financial-apis\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png","contentUrl":"https:\/\/eodhd.com\/financial-apis\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png","width":159,"height":82,"caption":"EODHD (EOD Historical Data)"},"image":{"@id":"https:\/\/eodhd.com\/financial-apis\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/eodhistoricaldata","https:\/\/x.com\/EOD_data","https:\/\/www.reddit.com\/r\/EODHistoricalData\/","https:\/\/eod-historical-data.medium.com\/"]},{"@type":"Person","@id":"https:\/\/eodhd.com\/financial-apis\/#\/schema\/person\/fa5be3606e0cd967a175978cebe97415","name":"EOD Historical Data Support","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eodhd.com\/financial-apis\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/3599a531133e7fc83654b72e3103c05b1bbeb91168cf4786cbad64afa9b82413?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3599a531133e7fc83654b72e3103c05b1bbeb91168cf4786cbad64afa9b82413?s=96&d=mm&r=g","caption":"EOD Historical Data Support"}}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/eodhd.com\/financial-apis\/wp-content\/uploads\/2017\/12\/PHP-Laravel-Example-1.png","jetpack_shortlink":"https:\/\/wp.me\/p8NjB1-5q","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/posts\/336","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/comments?post=336"}],"version-history":[{"count":4,"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/posts\/336\/revisions"}],"predecessor-version":[{"id":6911,"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/posts\/336\/revisions\/6911"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/media\/4482"}],"wp:attachment":[{"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/media?parent=336"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/categories?post=336"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/tags?post=336"},{"taxonomy":"coding-language","embeddable":true,"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/coding-language?post=336"},{"taxonomy":"ready-to-go-solution","embeddable":true,"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/ready-to-go-solution?post=336"},{"taxonomy":"qualification","embeddable":true,"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/qualification?post=336"},{"taxonomy":"financial-apis-category","embeddable":true,"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/financial-apis-category?post=336"},{"taxonomy":"financial-apis-manuals","embeddable":true,"href":"https:\/\/eodhd.com\/financial-apis\/wp-json\/wp\/v2\/financial-apis-manuals?post=336"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}