Skip to main content
GET
/
types
Vehicle Types
curl --request GET \
  --url https://api.remapdb.com/v1/types \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 1,
    "name": "Cars & LCV",
    "slug": "cars"
  },
  {
    "id": 2,
    "name": "Trucks & Buses",
    "slug": "trucks"
  },
  {
    "id": 3,
    "name": "Agriculture",
    "slug": "agriculture"
  },
  {
    "id": 5,
    "name": "Motorcycles & ATVs",
    "slug": "motorcycles"
  },
  {
    "id": 4,
    "name": "Marine",
    "slug": "marine"
  }
]

Authorizations

Authorization
string
header
required

All API methods require Bearer authentication. Use your existing API key as the bearer token.

Authorization header format: Authorization: Bearer YOUR_API_KEY.

Headers

Accept-Language
enum<string>

Method accept custom language. Content of the header should be the code of the language you are requesting. E.g.: en.

Available options:
bg,
da,
de,
en,
es,
et,
fi,
fr,
hr,
it,
lt,
lv,
nb,
nl,
nn,
pt,
ru,
sv,
tr,
zs
Example:

"en"

Response

Success

Maximum array length: 1000
id
integer

Vehicle type ID.

Example:

1

name
string

Name.

Maximum string length: 2048
Pattern: ^[^\u0000-\u001F\u007F]*$
Example:

"Cars & LCV"

slug
string

URL-friendly name (slug).

Maximum string length: 2048
Pattern: ^[^\u0000-\u001F\u007F]*$
Example:

"cars"