Skip to main content
POST
/
api
/
goonet
/
catalog
/goonet/catalog
curl --request POST \
  --url https://api.anysite.io/api/goonet/catalog \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "maker": "<string>",
  "model": "<string>",
  "timeout": 300
}
'
[
  {
    "maker": "<string>",
    "model": "<string>",
    "url": "<string>",
    "@type": "GoonetCatalog",
    "model_id": "<string>",
    "releases": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
maker
string
required

Maker slug, uppercase (e.g. 'TOYOTA')

Minimum string length: 1
Example:

"TOYOTA"

model
string
required

Model slug, uppercase (e.g. 'PRIUS')

Minimum string length: 1
Example:

"PRIUS"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

maker
string
required
model
string
required
url
string
required
@type
string
default:GoonetCatalog
model_id
string | null
releases
object[]