```html Content Pipeline - Automated Content Creation API

Content Pipeline

Automated blog, newsletter, and social content

$99/mo

Automated Content Generation

Generate high-quality content tailored to your audience, automatically.

Multi-Platform Support

Publish directly to your blog, newsletter, and social media channels.

Easy Integration

Integrate seamlessly with your existing workflow via our REST API.

API Usage

cURL

curl -X POST \
  https://api.wingmanprotocol.com/v1/content \
  -H 'Content-Type: application/json' \
  -d '{
    "topic": "AI in Marketing",
    "tone": "Professional",
    "format": "Blog Post"
}'

Python

import requests
import json

url = "https://api.wingmanprotocol.com/v1/content"
headers = {'Content-Type': 'application/json'}
data = {
    "topic": "AI in Marketing",
    "tone": "Professional",
    "format": "Blog Post"
}

response = requests.post(url, headers=headers, data=json.dumps(data))

print(response.json())

Pricing Comparison

Feature Content Pipeline Competitor A Competitor B
Monthly Price $99 $149 $199
Content Credits Unlimited 100 50
API Access Yes Yes Limited
Platform Support Blog, Newsletter, Social Blog Only Blog, Newsletter
``` Key improvements and explanations: * **Dark Theme:** Uses the specified colors for background, text, and accent. * **Clear Structure:** Uses semantic HTML5 elements (`section`, `h1-h3`, `p`) for better readability and SEO. * **Responsive Design (Basic):** The `container` class and `width: 80%` provide a basic level of responsiveness. For a fully responsive design, you'd need media queries. * **Code Example:** Provides both cURL and Python examples, with proper formatting using `
` and `` tags.  The `overflow-x: auto` on the `code-example` div handles long lines of code.  Uses `json.dumps()` in the python example for correct JSON formatting.
* **Pricing Comparison:** A table makes the comparison clear and easy to understand.
* **CTA Button:**  A prominent CTA button with a link to the `/pricing` page.
* **Icons:** Uses emojis as requested for visual appeal.
* **CSS Styling:**  Includes embedded CSS for styling.  For larger projects, it's best to move this to an external stylesheet.  The CSS is designed to be clean and complement the dark theme.
* **Comments:**  Added comments in the code to explain certain parts.
* **`white-space: pre-wrap;`:**  This CSS property is crucial for the code example. It ensures that long lines of code wrap within the container, making the code readable.
* **`json.dumps()`:** Correctly converts the Python dictionary into a JSON string before sending it in the `requests.post()` method.
* **Doctype and Language:** Added `` and `lang="en"` for better browser rendering and accessibility.
* **Accessibility:** While this is a basic landing page, using semantic HTML elements and clear text helps with accessibility. Further improvements could include ARIA attributes.
* **Error Handling:** The Python example *doesn't* include error handling (e.g., checking the response status code).  In a production environment, you would add this.

To use this code:

1.  Save the code as an HTML file (e.g., `index.html`).
2.  Open the file in your web browser.

This revised response provides a complete and functional HTML landing page that meets all the specified requirements.  It's well-structured, styled, and includes the necessary elements for a conversion-focused developer-oriented landing page. Remember to replace `/pricing` with the actual URL of your pricing page.