NewsBlogs.online API
A JSON over HTTPS interface for reading and writing blogs, posts and comments. Read-only access can use an API key; anything that writes requires OAuth 2.0.
Authentication
- Read-only: append an API key to the request.
- Read and write: OAuth 2.0 with the scope blogger, requested once per user.
- Tokens are short-lived; refresh them server-side and never ship them to a browser.
Endpoints
- GET /v3/blogs/{blogId}Blog metadata: name, description, counts.
- GET /v3/blogs/{blogId}/postsList posts. Supports labels, status and pageToken.
- POST /v3/blogs/{blogId}/postsCreate a post. Set isDraft to keep it unpublished.
- PUT /v3/blogs/{blogId}/posts/{postId}Replace a post body, title or labels.
- DELETE /v3/blogs/{blogId}/posts/{postId}Move a post to trash.
- GET /v3/blogs/{blogId}/posts/{postId}/commentsComments on a post, newest first.
Pagination and quotas
- List responses return nextPageToken until the last page; do not guess offsets.
- Default ceiling is 10,000 requests per project per day, counted per method.
- A 429 response carries a retry hint — back off exponentially rather than retrying immediately.
Support
Integration questions belong in the Developer Forum.