Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://api.kimp360.com/card-types \ --header 'x-api-key: <api-key>'
import requestsurl = "https://api.kimp360.com/card-types"headers = {"x-api-key": "<api-key>"}response = requests.get(url, headers=headers)print(response.text)
const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};fetch('https://api.kimp360.com/card-types', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "data": [ { "id": "<string>", "name": "<string>", "products": [ "<string>" ], "formats": [ "<string>" ], "softwares": [ "<string>" ] } ] }
Retrieves a list of all request types.
Filter by name
Filter by product type
Graphics
Video
Canva Graphics
Canva Video
A list of request types
Show child attributes
Was this page helpful?