Skip to main content
GET
/
incorporate
/
list
List incorporation projects
curl --request GET \
  --url https://public-api-v2.bags.fm/api/v1/incorporate/list \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "response": [
    {
      "tokenAddress": "<string>",
      "incorporationStatus": "<string>",
      "founders": [
        {
          "id": "<string>",
          "firstName": "<string>",
          "lastName": "<string>",
          "kycStatus": "PENDING",
          "pepCompleted": true,
          "ipAttributionAcknowledged": true,
          "shareBasisPoint": 123
        }
      ],
      "incorporationShareBasisPoint": 123,
      "createdAt": "<string>",
      "preferredCompanyNames": [
        "<string>"
      ],
      "isReadyForIncorporation": true,
      "category": "<string>",
      "twitterHandle": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key authentication. Provide your API key as the header value.

Response

Successfully retrieved incorporation projects

success
boolean
required
Example:

true

response
object[]