> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usesuperflow.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Project

Use this API to create a project on Superflow.

# Endpoint

`POST https://createproject.api.velt.dev/`

# Headers

<ParamField header="x-superflow-api-key" type="string" required>
  Your API key.
</ParamField>

<ParamField header="x-superflow-auth-token" type="string" required>
  Your [Auth Token](/security/auth-tokens).
</ParamField>

# Body Example

#### Params

<ParamField body="data" type="object" required>
  <Expandable title="properties">
    <ParamField body="projectUrl" type="string" required>
      Project URL
    </ParamField>

    <ParamField body="projectName" type="string" required>
      Project Name
    </ParamField>
  </Expandable>
</ParamField>

## **Example Requests**

```JSON theme={null}
{
  "data":{
      "projectUrl": "https://yourprojecturl.com",
      "projectName": "Your Project Name"
  }
}
```

# Response

#### Success Response

```JSON theme={null}
{
  "result": {
    "status": "success",
    "message": "Created new project successfully.",
    "data": {
      "projectId": "7649736893876327"
    }
  }
}
```

#### Failure Response

```JSON theme={null}
{
  "error": {
    "message": "ERROR_MESSAGE",
    "status": "INVALID_ARGUMENT"
  }
}
```

<ResponseExample>
  ```js theme={null}
  {
    "result": {
      "status": "success",
      "message": "Created new project successfully.",
      "data": {
        "projectId": "7649736893876327"
      }
    }
  }
  ```
</ResponseExample>
