Skip to main content
POST
/
api
/
businesses
Create business
curl --request POST \
  --url https://api.mymarky.ai/api/businesses \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "industry": "<string>",
  "website": "<string>",
  "language": "en"
}
'
{
  "id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "name": "<string>",
  "description": "<string>",
  "industry": "<string>",
  "website": "<string>",
  "language": "English",
  "updated_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.mymarky.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required

Business name

description
string | null

Business description

industry
string | null

Industry (e.g. 'Real Estate', 'Marketing Agency')

website
string | null

Business website URL

language
string
default:en

Content language (ISO 639-1 code)

Response

Successful Response

id
string
required

Business ID

created_at
string<date-time>
required

When the business was created

name
string | null

Business name

description
string | null

Business description

industry
string | null

Industry category

website
string | null

Business website URL

language
string
default:English

Content language

updated_at
string<date-time> | null

Last update time