Artist Management Agreement

Template Overview

  • Template ID: artist-management-agreement
  • Version: 2.0.0

To generate this document, pass the structured data described below into the data property of the /api/v1/documents/generate endpoint.


Data Payload Schema

FieldTypeRequirementDescription & Details
partiesarray of objectsYesThe entities entering into the agreement. For this template, must contain a minimum of 2 entities. Uses the standard Parties Schema. Each party also takes a definition field: one of "Artist", "Manager".
setDurationbooleanNoIs there a duration for this engagement? If there is not diration, the agreement runs until terminated by either party
durationstringConditionalWhat is the duration of the engagement? Required if setDuration is true.
commissionstringNoWhat is the commission rate?(10%) The percentage of the Artist's earnings that the Manager will receive as payment
sunsetbooleanNoWill there be a sunset clause? A sunset clause is a provision in the agreement that allows the Manager to continue receiving commission on certain earnings of the Artist for a specified period of time after the termination of the agreement.
firstYearstringConditionalWhat is the commission due to the Manager in the first year after termination? Required if sunset is true.
secondYearstringConditionalWhat is the commission due to the Manager in the second year after termination? Required if sunset is true.
thirdYearstringConditionalWhat is the commission due to the Manager in the third year after termination? Required if sunset is true.
currencystringNoWhat is the currency of payment? Options: "NGN", "USD", "GBP", "ZAR", "Others"
customCurrencystringConditionalInsert the currency Required if currency is "Others".
expensestringNoWhat is the Expense limit? The expense limit is the maximum amount that the Manager can spend on behalf of the Artist without prior approval from the Artist.
earningsarray of stringsNoWhat is the scope of the Manager's earnings? The scope of the Manager's earnings refers to the specific types of income or revenue streams from which the Manager will receive a commission. This can include earnings from live performances, recording contracts, publishing deals, endorsements, merchandise sales, and other sources related to the Artist's career in the entertainment industry.
managementObligationsarray of stringsNoWhat are the obligations of the Manager? Enter each of the obligations of the Manager
artistObligationsarray of stringsNoWhat are the obligations of the Artist? Enter each of the obligations of the Artist
authorityarray of stringsNoWhat are the authorities of the Manager? Enter each of the authorities of the Manager
disputebooleanNoHow will disputes be resolved? Values: true (By Arbitration), false (By the court).
governingLawstringYesWhat is the governing law? Must be a valid value from the Supported Countries list.

Example JSON Payload

Here is an example of a properly formatted data object for the Artist Management Agreement template.

{
  "templateId": "artist-management-agreement",
  "data": {
    "parties": [
      {
        "definition": "Artist",
        "isCompany": true,
        "rcName": "Acme Corp",
        "rcAddress": "123 Beta Way",
        "rcCountry": "United States",
        "rcNumber": "12345678",
        "type": "Private Company limited by shares"
      },
      {
        "definition": "Manager",
        "isCompany": false,
        "fullName": "Joshua",
        "address": "789 Alpha Ave",
        "rcCountry": "Nigeria"
      }
    ],
    "setDuration": true,
    "duration": "Sample Duration",
    "commission": "Sample Commission",
    "sunset": true,
    "firstYear": "Sample First Year",
    "secondYear": "Sample Second Year",
    "thirdYear": "Sample Third Year",
    "currency": "NGN",
    "expense": "pense limit is the maximum amount that the Manager can spend on behalf of the Artist without prior approval from the Artist",
    "earnings": [
      "Sample Earnings"
    ],
    "managementObligations": [
      "Sample Management Obligations"
    ],
    "artistObligations": [
      "Sample Artist Obligations"
    ],
    "authority": [
      "Sample Authority"
    ],
    "dispute": true,
    "governingLaw": "Nigeria"
  },
  "format": "pdf"
}