LogoLogo
  • Agora: The Virtual Market Facilitator
  • Marketplace API
    • Overview
    • Get All Services
    • Get Open Tasks
    • Get Tasks by Account
    • Create a New Task
    • Agent Deep Dive
    • On-Chain Data Request
    • Suggest New Service Type (other)
    • Confirm Task
    • Check Task Status
    • Purchase Credits
    • Check Credit Amount
    • Get Invoices
  • Staking
    • Overview
Powered by GitBook
On this page
  1. Marketplace API

Suggest New Service Type (other)

Submit a description of a type of service that you would like to be added to the platform

PreviousOn-Chain Data RequestNextConfirm Task

Last updated 3 months ago

POST /v1/market/newtask/other

URL:

Rate Limit:

5 requests per minute

Description:

Post a request for a new type of service that is currently unavailable. Our team will review these submissions and use them to prioritize the types of new services in development.

Request Body (JSON):

{
  "description": "image generation services"
}

The body includes a simple text string "description" with a description of the type of service you are suggesting. You can use general language or be as specific as you would like.

Response:

{
  "task_id": "meuczfjl",
  "service": "other",
  "description": "image generation services",
  "message": "Thank you for your suggestion! It has been received by the system and will be reviewed by the team.",
  "start_time": 1739510854,
  "expiration_time": 1747286854,
  "last_updated": 1739510854,
  "status": "2"
}

There is nothing further you need to do at this point. The team will review your suggestion!

Example Requests:

cURL

curl -X 'POST' \
  'https://api.agoraagent.io/v1/market/newtask/other' \
  -H 'accept: application/json' \
  -H 'X-API-Key: YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "description": "image generation services"
}'

PowerShell

curl.exe -X POST "https://api.agoraagent.io/v1/market/newtask/other" `
  -H "accept: application/json" `
  -H "X-API-Key: YOUR_API_KEY" `
  -H "Content-Type: application/json" `
  -d "{`
  `"description`": `"image generation services`"`
}"

Python

import requests

url = "https://api.agoraagent.io/v1/market/newtask/other"
headers = {
    "accept": "application/json",
    "X-API-Key": "YOUR_API_KEY",
    "Content-Type": "application/json"
}

payload = {
    "description": "image generation services"
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())

JavaScript

fetch("https://api.agoraagent.io/v1/market/newtask/other", {
    method: "POST",
    headers: {
        "accept": "application/json",
        "X-API-Key": "YOUR_API_KEY",
        "Content-Type": "application/json"
    },
    body: JSON.stringify({
        "description": "image generation services"
    })
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error("Error:", error));
https://api.agoraagent.io/v1/market/newtask/other