Skip to main content
GET
/
api
/
v1
/
tokenization
/
tokens
Get Tokens
curl --request GET \
  --url https://sandbox.oumla.com/api/v1/tokenization/tokens \
  --header 'x-api-key: <api-key>'
{
  "token": {
    "tokens": [
      {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "status": "ACTIVE",
        "type": "ERC721",
        "displayName": "My Token",
        "tokenMetadata": {
          "name": "My Token",
          "symbol": "MTK",
          "decimals": 18,
          "standard": "ERC721",
          "network": "ETH",
          "contractAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
          "contractTemplateId": "123e4567-e89b-12d3-a456-426614174000",
          "contractDeploymentId": "123e4567-e89b-12d3-a456-426614174000",
          "addressId": "123e4567-e89b-12d3-a456-426614174000"
        }
      }
    ],
    "total": 100
  }
}

Authorizations

x-api-key
string
header
required

API key for authentication. Obtain your API key from the dashboard.

Headers

x-sdk-version
string
default:1.0.0

SDK version header

Query Parameters

skip
integer
default:0

Number of records to skip

Required range: x >= 0
take
integer
default:10

Number of records to take

Required range: 1 <= x <= 100

Response

Successfully retrieved tokens

Tokens response object

token
object