logo of SeoGPT by Writesonic on the GPT Store

SeoGPT by Writesonic on the GPT Store

Use SeoGPT by Writesonic on ChatGPT

GPT Description

Elevate your SEO game with Writesonic: Find trending keywords, outsmart competitors, and unlock long-tail keywords for unparalleled content mastery!

GPT Prompt Starters

  • Give me SEO Analysis for keyword - AI in marketing
  • Get SEO data for ChatGPT & compose an article with it
  • Give me SEO score for article - https://writesonic.com/blog/notion-ai-vs-chatgpt

GPT Action OpenAPI Spec

{
  "openapi": "3.0.0",
  "info": {
    "title": "SEO Score Checker API",
    "version": "1.0.0",
    "description": "API for checking the SEO score of an article."
  },
  "servers": [
    {
      "url": "https://tools.writesonic.com/api"
    }
  ],
  "paths": {
    "/feature/fa-seo-score-checker": {
      "post": {
        "summary": "Check SEO Score",
        "description": "Checks the SEO score based on user input.",
        "operationId": "checkSeoScore",
        "requestBody": {
          "description": "Input data to check SEO score",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "user_input": {
                    "type": "object",
                    "properties": {
                      "keyword": {
                        "type": "string",
                        "example": "seo for digital marketing"
                      },
                      "country_code": {
                        "type": "string",
                        "example": "us"
                      },
                      "word_count": {
                        "type": "integer",
                        "example": 10
                      },
                      "heading_count": {
                        "type": "integer",
                        "example": 15
                      },
                      "paragraph_count": {
                        "type": "integer",
                        "example": 20
                      },
                      "image_count": {
                        "type": "integer",
                        "example": 0
                      },
                      "article_data": {
                        "type": "string",
                        "example": "ai marketing"
                      }
                    },
                    "required": [
                      "keyword",
                      "country_code",
                      "word_count",
                      "heading_count",
                      "paragraph_count",
                      "image_count",
                      "article_data"
                    ]
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "score": {
                      "type": "integer"
                    },
                    "custom_link": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/feature/fa-seo-data": {
      "post": {
        "summary": "Generate SEO Data",
        "description": "Generates SEO data including content structure and keywords based on user input.",
        "operationId": "generateSeoData",
        "requestBody": {
          "description": "Input data to generate SEO data",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "user_input": {
                    "type": "object",
                    "properties": {
                      "keyword": {
                        "type": "string",
                        "example": "seo for digital marketing"
                      },
                      "country_code": {
                        "type": "string",
                        "example": "us"
                      }
                    },
                    "required": [
                      "keyword",
                      "country_code"
                    ]
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "keyword": {
                      "type": "string"
                    },
                    "country_code": {
                      "type": "string"
                    },
                    "overall_content_structure": {
                      "type": "object",
                      "properties": {
                        "word_count": {
                          "type": "object",
                          "properties": {
                            "min": {
                              "type": "integer"
                            },
                            "max": {
                              "type": "integer"
                            }
                          }
                        },
                        "heading_count": {
                          "type": "object",
                          "properties": {
                            "min": {
                              "type": "integer"
                            },
                            "max": {
                              "type": "integer"
                            }
                          }
                        },
                        "paragraph_count": {
                          "type": "object",
                          "properties": {
                            "min": {
                              "type": "integer"
                            },
                            "max": {
                              "type": "integer"
                            }
                          }
                        },
                        "image_count": {
                          "type": "object",
                          "properties": {
                            "min": {
                              "type": "integer"
                            },
                            "max": {
                              "type": "integer"
                            }
                          }
                        }
                      }
                    },
                    "overall_keywords": {
                      "type": "object",
                      "properties": {
                        "autocomplete_keywords": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "keyword": {
                                "type": "string"
                              },
                              "expected_range_min": {
                                "type": "integer"
                              },
                              "expected_range_max": {
                                "type": "integer"
                              },
                              "competition": {
                                "type": "number"
                              },
                              "volume": {
                                "type": "integer"
                              }
                            }
                          }
                        },
                        "competitor_keywords": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "keyword": {
                                "type": "string"
                              },
                              "expected_range_min": {
                                "type": "integer"
                              },
                              "expected_range_max": {
                                "type": "integer"
                              },
                              "competition": {
                                "type": "number"
                              },
                              "volume": {
                                "type": "integer"
                              }
                            }
                          }
                        },
                        "ai_keywords": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "keyword": {
                                "type": "string"
                              },
                              "expected_range_min": {
                                "type": "integer"
                              },
                              "expected_range_max": {
                                "type": "integer"
                              },
                              "competition": {
                                "type": "number"
                              },
                              "volume": {
                                "type": "integer"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/feature/fa-seo-score-checker-from-article-url": {
      "post": {
        "summary": "Check SEO Score from Article URL",
        "description": "Checks the SEO score based on user input including article URL.",
        "operationId": "checkSeoScoreFromArticleUrl",
        "requestBody": {
          "description": "Input data to check SEO score from article URL",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "user_input": {
                    "type": "object",
                    "properties": {
                      "keyword": {
                        "type": "string",
                        "example": "notion ai vs chatgpt"
                      },
                      "country_code": {
                        "type": "string",
                        "example": "us"
                      },
                      "article_url": {
                        "type": "string",
                        "example": "https://writesonic.com/blog/notion-ai-vs-chatgpt"
                      }
                    },
                    "required": [
                      "keyword",
                      "country_code",
                      "article_url"
                    ]
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "score": {
                      "type": "integer"
                    },
                    "custom_link": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

SeoGPT by Writesonic FAQs

Currently, access to this GPT requires a ChatGPT Plus subscription.
Visit the largest GPT directory GPTsHunter.com, search to find the current GPT: "SeoGPT by Writesonic", click the button on the GPT detail page to navigate to the GPT Store. Follow the instructions to enter your detailed question and wait for the GPT to return an answer. Enjoy!
We are currently calculating its ranking on the GPT Store. Please check back later for updates.