curl --request GET \
  --url https://api.dots.dev/api/v2/apps \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "status": "created",
    "metrics": {
      "wallet_balance": "<string>",
      "money_out": "<string>",
      "connected_users": 123
    },
    "metadata": "<string>"
  }
]

Authorizations

Authorization
string
headerrequired

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

limit
integer

Maximum number of results to retrieve

starting_after
string

ID of first app to retrieve

ending_before
string

ID of last app to retrieve

Response

200 - application/json
id
string
required
name
string
required
status
enum<string>

App verification status. Some Dots use cases require newly created apps to pass KYB review.

Available options:
created,
in_review,
approved
metrics
object
required
metadata

Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.