Begginer's Guide
Welcome to our begginer's guide. This short document is intended to give you some insights about how you can start using json2content.
What this is for?
json2content is an API you create pretty carousels for Instagram without needing design skills.
What you need:
- An API key
- Some ideas for what you want your pictures to say
Step 1: Get Ready
- Make sure you have your API key
Step 2: Choose a Template
Start using our templates, later you can create your own. Pick a number from 001 to 005.
Step 3: Write Your Messages
Think of 3-4 short messages for your carousel
Step 4: Put It All Together
Here's a super simple example using Python:
import requests
url = "https://api.json2content.com/carrouselv2"
api_key = "your-special-api-key"
headers = {
"X-API-Key": api_key,
"Content-Type": "application/json"
}
carousel_info = {
"template": "001",
"slides": [
{"text": "Welcome to my carousel!"},
{"text": "Here's my second message"},
{"text": "And here's the last one!"}
]
}
response = requests.post(url, headers=headers, json=carousel_info)
if response.status_code == 200:
print("Yay! Your carousel is ready!")
print(response.json())
else:
print("Oops, something went wrong.")
print(response.text)
Step 5: Run and Get Your Pictures
- Run this code (or ask a tech-savvy friend to help)
- The tool will give you links to your carousel pictures
The outcome will be a response similar to this one:
{
"status":"success",
"image_urls":[
"https://tiempvguoarttzwmvayi.supabase.co/storage/v1/object/public/fotos/30e70188-f5a1-4481-81d3-f50f2bd5606e/c3c39530-d87a-4189-959f-b2dad5c20f94/payload_02_00.png?",
"https://tiempvguoarttzwmvayi.supabase.co/storage/v1/object/public/fotos/30e70188-f5a1-4481-81d3-f50f2bd5606e/c3c39530-d87a-4189-959f-b2dad5c20f94/payload_02_01.png?",
"https://tiempvguoarttzwmvayi.supabase.co/storage/v1/object/public/fotos/30e70188-f5a1-4481-81d3-f50f2bd5606e/c3c39530-d87a-4189-959f-b2dad5c20f94/payload_02_02.png?",
"https://tiempvguoarttzwmvayi.supabase.co/storage/v1/object/public/fotos/30e70188-f5a1-4481-81d3-f50f2bd5606e/c3c39530-d87a-4189-959f-b2dad5c20f94/payload_02_03.png?",
"https://tiempvguoarttzwmvayi.supabase.co/storage/v1/object/public/fotos/30e70188-f5a1-4481-81d3-f50f2bd5606e/c3c39530-d87a-4189-959f-b2dad5c20f94/payload_02_04.png?"
],
"remaining_credits":59,
"job_id":"c3c39530-d87a-4189-959f-b2dad5c20f94"
}
Step 6: Use Your New Carousel
- Download the pictures from the links
- Post them on Instagram as a carousel
Tips:
- Start simple! Just use text at first.
- If it doesn't work, double-check your API key and the website address.
- Experiment with different templates (001, 002, etc.) to see which you like best.
- Have fun and be creative with your messages!