IntroductionGetting StartedStep 1 — Download appStep 2 — Test connectionStep 1 — Run setupAPI ReferenceGET /postsGET /posts/<id>POST /postsPOST /posts/<id>Resources
Introduction
This API gives you _____.
Getting Started
Step 1 — Download app
- Go to download link here: ________
- Press download and get necessary resources
Step 2 — Test connection
- Use postman and send mock GET request to the following domain:
https://api.yoursite.com/?api_key={YOUR API KEY}
Step 1 — Run setup
- You're good to go!
API Reference
GET /posts
This endpoint gives you access to all the posts your authentication level has access to.
Example Request
GET https://api.yoursite.com/posts/?api_key={YOUR API KEY}
Example Response
GET /posts/<id>
This endpoint gives you access to a specific post from it's ID.
Example Request
GET https://api.yoursite.com/posts/?api_key={YOUR API KEY}
Example Response
POST /posts
This endpoint lets you upload multiple posts at a time.
Currently disabled!
POST /posts/<id>
This endpoint lets you upload a post to your user account.
Example Request
POST https://api.yoursite.com/posts/?api_key={YOUR API KEY}
Body:
"body": {
"id": 0,
"title": "title"
}
Example Response