Endpoint Playground
Test Crawlora's This Is Money 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/thisismoney/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical This Is Money author URL |
{
"code": 200,
"data": {
"url": "https://www.thisismoney.co.uk/profile-2242/toby-walne.html",
"name": "Toby Walne",
"job_title": "Chief Money Reporter",
"bio": "Toby Walne is chief money reporter for the Daily Mail and The Mail on Sunday...",
"coverage": [
"Money",
"Bills"
],
"articles": [
{
"title": "Gordon doubled his money in five months buying and selling unloved objects. Here's how you can too",
"url": "https://www.thisismoney.co.uk/money/savemoneymakemoney/article-16152535/example.html",
"excerpt": "Gordon Kennedy buys antiques and other collectable items, then sells them on at a higher price.",
"published_at": "2026-09-22T22:30:52+0100"
}
]
}
}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 a This Is Money author's byline metadata, biography, coverage topics, and recent articles from a canonical author URL.
{
"code": 200,
"data": {
"url": "https://www.thisismoney.co.uk/profile-2242/toby-walne.html",
"name": "Toby Walne",
"job_title": "Chief Money Reporter",
"bio": "Toby Walne is chief money reporter for the Daily Mail and The Mail on Sunday...",
"coverage": [
"Money",
"Bills"
],
"articles": [
{
"title": "Gordon doubled his money in five months buying and selling unloved objects. Here's how you can too",
"url": "https://www.thisismoney.co.uk/money/savemoneymakemoney/article-16152535/example.html",
"excerpt": "Gordon Kennedy buys antiques and other collectable items, then sells them on at a higher price.",
"published_at": "2026-09-22T22:30:52+0100"
}
]
}
}curl "https://api.crawlora.net/api/v1/thisismoney/author?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"