List companies
GET/api/company
List companies
Request
Query Parameters
Query string for company name
Possible values: >= 1
Page number
Possible values: >= 1 and <= 100
Number of items per page
Responses
- 200
- default
Page of Companies
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
items object[]required
An array of companies.
The unique identifier of the company.
The name of the company.
The description of the company. Can be null.
The URL of the company avatar.
Possible values: [art_and_design, automobiles, beauty, beverages, books_and_literature, career_and_business, children_toys_and_games, diy, e_commerce, education, events_and_entertainment, fashion, finance_and_insurance, food, gardening_and_outdoor, health_and_fitness, hobbies_and_crafts, home_and_living, home_appliences, legal_services, mobile_games, news, non_profit_and_charity, office_supplies, parenting_and_family_products, personal_development, pets, photography, podcasts, real_estate, social_media_tools, sports_and_outdoor_activities, streaming, subscription_box, technology, travel, video_games, wedding]
The categories of the company.
Company website
Monthly budget in USD
Year of foundation
The total number of companies.
{
"items": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"description": "string",
"avatar": "string",
"categories": [
"art_and_design"
],
"home_page": "string",
"monthly_budget": "string",
"year_of_foundation": 0
}
],
"total": 0
}
Unexpected error
- application/json
- Schema
- Example (from schema)
Schema
The error code
A human-readable error message
{
"code": 0,
"message": "string"
}