{"id":2120,"date":"2025-05-27T11:35:04","date_gmt":"2025-05-27T09:35:04","guid":{"rendered":"https:\/\/jibsy.com\/?p=2120"},"modified":"2025-05-27T11:35:05","modified_gmt":"2025-05-27T09:35:05","slug":"comparaison-des-modeles-ia","status":"publish","type":"post","link":"https:\/\/jibsy.com\/?p=2120","title":{"rendered":"Comparaison des Mod\u00e8les IA"},"content":{"rendered":"<!DOCTYPE html>\n<html lang=\"fr\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Comparaison des Mod&egrave;les IA : OpenAI vs Claude vs Gemini<\/title>\n    <style>\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n        \n        body {\n            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n            line-height: 1.6;\n            color: #333;\n            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);\n            min-height: 100vh;\n        }\n        \n        .container {\n            max-width: 1200px;\n            margin: 0 auto;\n            padding: 20px;\n        }\n        \n        .header {\n            text-align: center;\n            margin-bottom: 3rem;\n            padding: 2rem 0;\n        }\n        \n        .header h1 {\n            font-size: 3rem;\n            background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);\n            -webkit-background-clip: text;\n            -webkit-text-fill-color: transparent;\n            background-clip: text;\n            margin-bottom: 1rem;\n            animation: fadeInUp 1s ease;\n        }\n        \n        .header p {\n            font-size: 1.2rem;\n            color: #666;\n            animation: fadeInUp 1s ease 0.2s both;\n        }\n        \n        .comparison-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));\n            gap: 2rem;\n            margin-bottom: 3rem;\n        }\n        \n        .model-card {\n            background: white;\n            border-radius: 20px;\n            padding: 2rem;\n            box-shadow: 0 20px 40px rgba(0,0,0,0.1);\n            transition: all 0.3s ease;\n            position: relative;\n            overflow: hidden;\n            animation: fadeInUp 1s ease;\n        }\n        \n        .model-card::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            right: 0;\n            height: 4px;\n            background: var(--brand-color);\n            border-radius: 20px 20px 0 0;\n        }\n        \n        .model-card:hover {\n            transform: translateY(-10px);\n            box-shadow: 0 30px 60px rgba(0,0,0,0.15);\n        }\n        \n        .openai-card {\n            --brand-color: linear-gradient(45deg, #10a37f, #1eb854);\n        }\n        \n        .claude-card {\n            --brand-color: linear-gradient(45deg, #d97706, #f59e0b);\n        }\n        \n        .gemini-card {\n            --brand-color: linear-gradient(45deg, #3b82f6, #8b5cf6);\n        }\n        \n        .model-header {\n            display: flex;\n            align-items: center;\n            margin-bottom: 1.5rem;\n        }\n        \n        .model-logo {\n            width: 60px;\n            height: 60px;\n            border-radius: 15px;\n            margin-right: 1rem;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            font-size: 1.5rem;\n            font-weight: bold;\n            color: white;\n        }\n        \n        .openai-logo { background: linear-gradient(45deg, #10a37f, #1eb854); }\n        .claude-logo { background: linear-gradient(45deg, #d97706, #f59e0b); }\n        .gemini-logo { background: linear-gradient(45deg, #3b82f6, #8b5cf6); }\n        \n        .model-name {\n            font-size: 1.8rem;\n            font-weight: bold;\n            margin-bottom: 0.5rem;\n        }\n        \n        .model-version {\n            color: #666;\n            font-size: 0.9rem;\n        }\n        \n        .pros-cons {\n            margin: 1.5rem 0;\n        }\n        \n        .pros, .cons {\n            margin-bottom: 1rem;\n        }\n        \n        .pros h4 {\n            color: #10b981;\n            margin-bottom: 0.5rem;\n            display: flex;\n            align-items: center;\n            font-size: 1.1rem;\n        }\n        \n        .cons h4 {\n            color: #ef4444;\n            margin-bottom: 0.5rem;\n            display: flex;\n            align-items: center;\n            font-size: 1.1rem;\n        }\n        \n        .pros h4::before {\n            content: '&#10003;';\n            margin-right: 0.5rem;\n            font-weight: bold;\n        }\n        \n        .cons h4::before {\n            content: '&#10007;';\n            margin-right: 0.5rem;\n            font-weight: bold;\n        }\n        \n        .pros ul, .cons ul {\n            list-style: none;\n            padding-left: 1rem;\n        }\n        \n        .pros li, .cons li {\n            margin-bottom: 0.3rem;\n            font-size: 0.95rem;\n            line-height: 1.4;\n        }\n        \n        .use-cases {\n            background: #f8fafc;\n            border-radius: 10px;\n            padding: 1rem;\n            margin: 1.5rem 0;\n        }\n        \n        .use-cases h4 {\n            color: #374151;\n            margin-bottom: 0.5rem;\n            font-size: 1rem;\n        }\n        \n        .use-cases ul {\n            list-style: none;\n        }\n        \n        .use-cases li {\n            margin-bottom: 0.3rem;\n            font-size: 0.9rem;\n            padding-left: 1rem;\n            position: relative;\n        }\n        \n        .use-cases li::before {\n            content: '&rarr;';\n            position: absolute;\n            left: 0;\n            color: #6b7280;\n        }\n        \n        .pricing {\n            background: linear-gradient(135deg, #667eea, #764ba2);\n            color: white;\n            border-radius: 10px;\n            padding: 1rem;\n            text-align: center;\n            margin-top: 1rem;\n        }\n        \n        .pricing h4 {\n            margin-bottom: 0.5rem;\n        }\n        \n        .decision-guide {\n            background: white;\n            border-radius: 20px;\n            padding: 2rem;\n            box-shadow: 0 20px 40px rgba(0,0,0,0.1);\n            margin: 3rem 0;\n            animation: fadeInUp 1s ease 0.4s both;\n        }\n        \n        .decision-guide h2 {\n            text-align: center;\n            margin-bottom: 2rem;\n            color: #374151;\n            font-size: 2rem;\n        }\n        \n        .decision-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n            gap: 1.5rem;\n        }\n        \n        .decision-item {\n            background: #f8fafc;\n            border-radius: 15px;\n            padding: 1.5rem;\n            border-left: 4px solid;\n        }\n        \n        .decision-item.creative { border-left-color: #10a37f; }\n        .decision-item.analysis { border-left-color: #d97706; }\n        .decision-item.code { border-left-color: #3b82f6; }\n        .decision-item.general { border-left-color: #8b5cf6; }\n        \n        .decision-item h3 {\n            margin-bottom: 1rem;\n            color: #374151;\n        }\n        \n        .decision-item .recommendation {\n            font-weight: bold;\n            color: #059669;\n            margin-bottom: 0.5rem;\n        }\n        \n        @keyframes fadeInUp {\n            from {\n                opacity: 0;\n                transform: translateY(30px);\n            }\n            to {\n                opacity: 1;\n                transform: translateY(0);\n            }\n        }\n        \n        .rating {\n            display: flex;\n            align-items: center;\n            margin: 0.5rem 0;\n        }\n        \n        .rating-label {\n            min-width: 100px;\n            font-size: 0.9rem;\n            color: #666;\n        }\n        \n        .rating-bar {\n            flex: 1;\n            height: 8px;\n            background: #e5e7eb;\n            border-radius: 4px;\n            margin: 0 0.5rem;\n            overflow: hidden;\n        }\n        \n        .rating-fill {\n            height: 100%;\n            background: linear-gradient(90deg, #10b981, #059669);\n            border-radius: 4px;\n            transition: width 1s ease;\n        }\n        \n        .rating-score {\n            min-width: 30px;\n            font-weight: bold;\n            font-size: 0.9rem;\n        }\n        \n        @media (max-width: 768px) {\n            .header h1 {\n                font-size: 2rem;\n            }\n            \n            .comparison-grid {\n                grid-template-columns: 1fr;\n            }\n            \n            .container {\n                padding: 10px;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n    <div class=\"container\">\n        <div class=\"header\">\n           \n            <p>OpenAI vs Claude vs Gemini : Trouvez l&rsquo;IA parfaite pour vos besoins<\/p>\n        <\/div>\n        \n        <div class=\"comparison-grid\">\n            <!-- OpenAI GPT-4 -->\n            <div class=\"model-card openai-card\">\n                <div class=\"model-header\">\n                    <div class=\"model-logo openai-logo\">GPT<\/div>\n                    <div>\n                        <div class=\"model-name\">OpenAI GPT-4<\/div>\n                        <div class=\"model-version\">GPT-4o &amp; GPT-4 Turbo<\/div>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"rating\">\n                    <span class=\"rating-label\">Performance<\/span>\n                    <div class=\"rating-bar\"><div class=\"rating-fill\" style=\"width: 95%\"><\/div><\/div>\n                    <span class=\"rating-score\">9.5<\/span>\n                <\/div>\n                <div class=\"rating\">\n                    <span class=\"rating-label\">Cr&eacute;ativit&eacute;<\/span>\n                    <div class=\"rating-bar\"><div class=\"rating-fill\" style=\"width: 90%\"><\/div><\/div>\n                    <span class=\"rating-score\">9.0<\/span>\n                <\/div>\n                <div class=\"rating\">\n                    <span class=\"rating-label\">Code<\/span>\n                    <div class=\"rating-bar\"><div class=\"rating-fill\" style=\"width: 85%\"><\/div><\/div>\n                    <span class=\"rating-score\">8.5<\/span>\n                <\/div>\n                \n                <div class=\"pros-cons\">\n                    <div class=\"pros\">\n                        <h4>Avantages<\/h4>\n                        <ul>\n                            <li>Excellente compr&eacute;hension contextuelle<\/li>\n                            <li>Tr&egrave;s cr&eacute;atif pour l&rsquo;&eacute;criture<\/li>\n                            <li>Large &eacute;cosyst&egrave;me d&rsquo;applications<\/li>\n                            <li>Multimodal (texte, images, voix)<\/li>\n                            <li>API robuste et bien document&eacute;e<\/li>\n                        <\/ul>\n                    <\/div>\n                    <div class=\"cons\">\n                        <h4>Inconv&eacute;nients<\/h4>\n                        <ul>\n                            <li>Plus co&ucirc;teux que les alternatives<\/li>\n                            <li>Peut parfois &laquo;&nbsp;halluciner&nbsp;&raquo;<\/li>\n                            <li>Limitations sur les sujets sensibles<\/li>\n                            <li>D&eacute;pendance &agrave; Internet<\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"use-cases\">\n                    <h4>&#128161; Id&eacute;al pour :<\/h4>\n                    <ul>\n                        <li>R&eacute;daction cr&eacute;ative et marketing<\/li>\n                        <li>Brainstorming et id&eacute;ation<\/li>\n                        <li>Assistance conversationnelle<\/li>\n                        <li>G&eacute;n&eacute;ration de contenu vari&eacute;<\/li>\n                    <\/ul>\n                <\/div>\n                \n                <div class=\"pricing\">\n                    <h4>Tarification<\/h4>\n                    <p>&Agrave; partir de 0,03$\/1K tokens<br>Plans Pro &agrave; 20$\/mois<\/p>\n                <\/div>\n            <\/div>\n            \n            <!-- Claude -->\n            <div class=\"model-card claude-card\">\n                <div class=\"model-header\">\n                    <div class=\"model-logo claude-logo\">CL<\/div>\n                    <div>\n                        <div class=\"model-name\">Claude<\/div>\n                        <div class=\"model-version\">Claude 4 Sonnet &amp; Opus<\/div>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"rating\">\n                    <span class=\"rating-label\">Performance<\/span>\n                    <div class=\"rating-bar\"><div class=\"rating-fill\" style=\"width: 92%\"><\/div><\/div>\n                    <span class=\"rating-score\">9.2<\/span>\n                <\/div>\n                <div class=\"rating\">\n                    <span class=\"rating-label\">Analyse<\/span>\n                    <div class=\"rating-bar\"><div class=\"rating-fill\" style=\"width: 95%\"><\/div><\/div>\n                    <span class=\"rating-score\">9.5<\/span>\n                <\/div>\n                <div class=\"rating\">\n                    <span class=\"rating-label\">S&eacute;curit&eacute;<\/span>\n                    <div class=\"rating-bar\"><div class=\"rating-fill\" style=\"width: 98%\"><\/div><\/div>\n                    <span class=\"rating-score\">9.8<\/span>\n                <\/div>\n                \n                <div class=\"pros-cons\">\n                    <div class=\"pros\">\n                        <h4>Avantages<\/h4>\n                        <ul>\n                            <li>Excellent pour l&rsquo;analyse complexe<\/li>\n                            <li>Tr&egrave;s s&ucirc;r et &eacute;thique<\/li>\n                            <li>R&eacute;ponses nuanc&eacute;es et r&eacute;fl&eacute;chies<\/li>\n                            <li>Bon pour les t&acirc;ches techniques<\/li>\n                            <li>Interface utilisateur intuitive<\/li>\n                        <\/ul>\n                    <\/div>\n                    <div class=\"cons\">\n                        <h4>Inconv&eacute;nients<\/h4>\n                        <ul>\n                            <li>Moins cr&eacute;atif que GPT-4<\/li>\n                            <li>&Eacute;cosyst&egrave;me d&rsquo;apps plus limit&eacute;<\/li>\n                            <li>Parfois trop prudent<\/li>\n                            <li>Disponibilit&eacute; g&eacute;ographique limit&eacute;e<\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"use-cases\">\n                    <h4>&#128161; Id&eacute;al pour :<\/h4>\n                    <ul>\n                        <li>Analyse de donn&eacute;es et documents<\/li>\n                        <li>Recherche et synth&egrave;se<\/li>\n                        <li>Aide &agrave; la d&eacute;cision<\/li>\n                        <li>T&acirc;ches n&eacute;cessitant pr&eacute;cision<\/li>\n                    <\/ul>\n                <\/div>\n                \n                <div class=\"pricing\">\n                    <h4>Tarification<\/h4>\n                    <p>&Agrave; partir de 0,025$\/1K tokens<br>Plans Pro &agrave; 20$\/mois<\/p>\n                <\/div>\n            <\/div>\n            \n            <!-- Google Gemini -->\n            <div class=\"model-card gemini-card\">\n                <div class=\"model-header\">\n                    <div class=\"model-logo gemini-logo\">GM<\/div>\n                    <div>\n                        <div class=\"model-name\">Google Gemini<\/div>\n                        <div class=\"model-version\">Gemini 1.5 Pro &amp; Ultra<\/div>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"rating\">\n                    <span class=\"rating-label\">Performance<\/span>\n                    <div class=\"rating-bar\"><div class=\"rating-fill\" style=\"width: 88%\"><\/div><\/div>\n                    <span class=\"rating-score\">8.8<\/span>\n                <\/div>\n                <div class=\"rating\">\n                    <span class=\"rating-label\">Multimodal<\/span>\n                    <div class=\"rating-bar\"><div class=\"rating-fill\" style=\"width: 95%\"><\/div><\/div>\n                    <span class=\"rating-score\">9.5<\/span>\n                <\/div>\n                <div class=\"rating\">\n                    <span class=\"rating-label\">Code<\/span>\n                    <div class=\"rating-bar\"><div class=\"rating-fill\" style=\"width: 90%\"><\/div><\/div>\n                    <span class=\"rating-score\">9.0<\/span>\n                <\/div>\n                \n                <div class=\"pros-cons\">\n                    <div class=\"pros\">\n                        <h4>Avantages<\/h4>\n                        <ul>\n                            <li>Excellent en programmation<\/li>\n                            <li>Int&eacute;gration Google Workspace<\/li>\n                            <li>Capacit&eacute;s multimodales avanc&eacute;es<\/li>\n                            <li>Gratuit avec des limites g&eacute;n&eacute;reuses<\/li>\n                            <li>Traitement de longs contextes<\/li>\n                        <\/ul>\n                    <\/div>\n                    <div class=\"cons\">\n                        <h4>Inconv&eacute;nients<\/h4>\n                        <ul>\n                            <li>Parfois incoh&eacute;rent<\/li>\n                            <li>Moins mature que GPT-4<\/li>\n                            <li>Interface moins raffin&eacute;e<\/li>\n                            <li>Support client limit&eacute;<\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"use-cases\">\n                    <h4>&#128161; Id&eacute;al pour :<\/h4>\n                    <ul>\n                        <li>D&eacute;veloppement et programmation<\/li>\n                        <li>Traitement d&rsquo;images et vid&eacute;os<\/li>\n                        <li>Int&eacute;gration avec Google Services<\/li>\n                        <li>Projets avec budget limit&eacute;<\/li>\n                    <\/ul>\n                <\/div>\n                \n                <div class=\"pricing\">\n                    <h4>Tarification<\/h4>\n                    <p>Gratuit jusqu&rsquo;&agrave; 60 req\/min<br>Pro &agrave; partir de 0,002$\/1K tokens<\/p>\n                <\/div>\n            <\/div>\n        <\/div>\n        \n        <div class=\"decision-guide\">\n            <h2>&#127919; Guide de D&eacute;cision<\/h2>\n            <div class=\"decision-grid\">\n                <div class=\"decision-item creative\">\n                    <h3>&#128173; Pour la Cr&eacute;ativit&eacute;<\/h3>\n                    <div class=\"recommendation\">Recommand&eacute; : OpenAI GPT-4<\/div>\n                    <p>Si vous cherchez &agrave; g&eacute;n&eacute;rer du contenu cr&eacute;atif, des histoires, des po&egrave;mes, ou du marketing original, GPT-4 excelle dans ces domaines gr&acirc;ce &agrave; sa capacit&eacute; d&rsquo;improvisation.<\/p>\n                <\/div>\n                \n                <div class=\"decision-item analysis\">\n                    <h3>&#128202; Pour l&rsquo;Analyse<\/h3>\n                    <div class=\"recommendation\">Recommand&eacute; : Claude<\/div>\n                    <p>Pour analyser des documents complexes, synth&eacute;tiser des informations, ou prendre des d&eacute;cisions bas&eacute;es sur des donn&eacute;es, Claude offre une approche m&eacute;thodique et fiable.<\/p>\n                <\/div>\n                \n                <div class=\"decision-item code\">\n                    <h3>&#128187; Pour le Code<\/h3>\n                    <div class=\"recommendation\">Recommand&eacute; : Google Gemini<\/div>\n                    <p>Si votre priorit&eacute; est la programmation, le d&eacute;bogage, ou l&rsquo;int&eacute;gration avec l&rsquo;&eacute;cosyst&egrave;me Google, Gemini Pro offre d&rsquo;excellentes capacit&eacute;s techniques.<\/p>\n                <\/div>\n                \n                <div class=\"decision-item general\">\n                    <h3>&#128260; Usage G&eacute;n&eacute;ral<\/h3>\n                    <div class=\"recommendation\">Recommand&eacute; : OpenAI GPT-4<\/div>\n                    <p>Pour un usage polyvalent couvrant conversation, r&eacute;daction, et assistance g&eacute;n&eacute;rale, GPT-4 reste le choix le plus &eacute;quilibr&eacute; et mature.<\/p>\n                <\/div>\n            <\/div>\n        <\/div>\n        \n        <div style=\"text-align: center; margin: 3rem 0; padding: 2rem; background: white; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);\">\n            <h3 style=\"margin-bottom: 1rem; color: #374151;\">&#128161; Conseil Final<\/h3>\n            <p style=\"font-size: 1.1rem; line-height: 1.6; color: #666; max-width: 800px; margin: 0 auto;\">\n                Le choix d&eacute;pend vraiment de vos besoins sp&eacute;cifiques. N&rsquo;h&eacute;sitez pas &agrave; tester les versions gratuites de chaque mod&egrave;le pour vous faire votre propre opinion. Chacun a ses forces et peut exceller dans diff&eacute;rents contextes d&rsquo;utilisation.\n            <\/p>\n        <\/div>\n    <\/div>\n    \n    <script>\n        \/\/ Animation au scroll\n        const observerOptions = {\n            threshold: 0.1,\n            rootMargin: '0px 0px -50px 0px'\n        };\n        \n        const observer = new IntersectionObserver((entries) => {\n            entries.forEach(entry => {\n                if (entry.isIntersecting) {\n                    entry.target.style.animationDelay = '0s';\n                    entry.target.style.animationPlayState = 'running';\n                }\n            });\n        }, observerOptions);\n        \n        document.querySelectorAll('.model-card, .decision-guide').forEach(card => {\n            observer.observe(card);\n        });\n        \n        \/\/ Animation des barres de rating\n        setTimeout(() => {\n            document.querySelectorAll('.rating-fill').forEach(bar => {\n                bar.style.width = bar.style.width;\n            });\n        }, 500);\n    <\/script>\n<\/body>\n<\/html>\n","protected":false},"excerpt":{"rendered":"<p>Comparaison des Mod&egrave;les IA : OpenAI vs Claude vs Gemini OpenAI vs Claude vs Gemini : Trouvez l&rsquo;IA parfaite pour vos besoins GPT OpenAI GPT-4 GPT-4o &amp; GPT-4 Turbo Performance 9.5 Cr&eacute;ativit&eacute; 9.0 Code 8.5 Avantages Excellente compr&eacute;hension contextuelle Tr&egrave;s cr&eacute;atif pour l&rsquo;&eacute;criture Large &eacute;cosyst&egrave;me d&rsquo;applications Multimodal (texte, images, voix) API robuste et bien document&eacute;e &hellip; <a href=\"https:\/\/jibsy.com\/?p=2120\" class=\"more-link\">Continuer la lecture<span class=\"screen-reader-text\"> de &laquo;&nbsp;Comparaison des Mod\u00e8les IA&nbsp;&raquo;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[],"class_list":["post-2120","post","type-post","status-publish","format-standard","hentry","category-edito"],"_links":{"self":[{"href":"https:\/\/jibsy.com\/index.php?rest_route=\/wp\/v2\/posts\/2120","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jibsy.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jibsy.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jibsy.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jibsy.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2120"}],"version-history":[{"count":1,"href":"https:\/\/jibsy.com\/index.php?rest_route=\/wp\/v2\/posts\/2120\/revisions"}],"predecessor-version":[{"id":2121,"href":"https:\/\/jibsy.com\/index.php?rest_route=\/wp\/v2\/posts\/2120\/revisions\/2121"}],"wp:attachment":[{"href":"https:\/\/jibsy.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2120"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jibsy.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2120"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jibsy.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2120"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}