Endpoint Playground
Test Crawlora's MarketWatch author profile API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/marketwatch/author" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | No | Author slug, e.g. hannah-pedone | |
| url | string | No | Canonical marketwatch.com/author/<slug> URL; alternative to slug |
{
"code": 200,
"data": {
"name": "Hannah Pedone",
"slug": "hannah-pedone",
"url": "https://www.marketwatch.com/author/hannah-pedone",
"job_title": "Technology reporter",
"bio": "Hannah Pedone is a New York–based technology reporter for MarketWatch.",
"works_for": "MarketWatch",
"articles": [
{
"title": "Quantum stocks are getting hot again after a brutal summer. Can the rally last?",
"url": "https://www.marketwatch.com/story/quantum-stocks-are-getting-hot-again-after-a-brutal-summer-can-the-rally-last-a8244a66"
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns one MarketWatch author's public profile: name, job title, bio, and their recent articles.
{
"code": 200,
"data": {
"name": "Hannah Pedone",
"slug": "hannah-pedone",
"url": "https://www.marketwatch.com/author/hannah-pedone",
"job_title": "Technology reporter",
"bio": "Hannah Pedone is a New York–based technology reporter for MarketWatch.",
"works_for": "MarketWatch",
"articles": [
{
"title": "Quantum stocks are getting hot again after a brutal summer. Can the rally last?",
"url": "https://www.marketwatch.com/story/quantum-stocks-are-getting-hot-again-after-a-brutal-summer-can-the-rally-last-a8244a66"
}
]
}
}curl "https://api.crawlora.net/api/v1/marketwatch/author" \
-H "x-api-key: $CRAWLORA_API_KEY"