ddgs / postman_collection.json
dromero-nttd's picture
Add markitdown URL markdown and ignore tasks
9c093af
{
"info": {
"name": "DDGS Search API",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Search",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "Bearer ",
"type": "text"
},
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"query\": \"openai\",\n \"region\": \"us-en\",\n \"safesearch\": \"moderate\",\n \"timelimit\": \"m\",\n \"max_results\": 5,\n \"backend\": \"auto\",\n \"proxy\": null,\n \"timeout\": 30,\n \"verify\": true\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/search",
"host": [
"{{base_url}}"
],
"path": [
"search"
]
}
}
}
],
"variable": [
{
"key": "base_url",
"value": "https://dromerosm-ddgs.hf.space"
}
]
}