1. Affiliate.com API Endpoints
Affiliate.com API Documentation
  • Affiliate.com API Endpoints
    • Account
      • Get User Team Account Information
    • Network Groups
      • List All Network Groups
    • Networks
      • List All Networks
      • Get Single Specific Network
    • Merchants
      • List All Merchants
      • Get Single Specific Merchant Name
      • Get a Single Specific Merchant ID
    • Products
      • Search Products
    • Omni
      • Omni
    • Conversion
      • URL to Barcode
      • Barcode to SKU
      • ASIN to Barcode
      • SKU to Barcode
      • Barcode to ASIN
    • Watch
      • Set Product Watch
      • Get All Product Watches
      • Get Specific Product Watch
      • Get Specific Product Watch from Metadata
      • Edit Product Watch
      • Delete Product Watch
      • Get Single Product Watch Notification History
      • Get Product Watch Notification History via Metadata
    • Product List
      • Create Product List
      • Get Product Lists
      • Get Single List
      • Get List By Metadata
      • Add Products to a List
      • Remove Products from a List
      • Delete Product List
  1. Affiliate.com API Endpoints

Account

Account API Overview#

The Account API allows users to retrieve information about their team account, including team details, API usage limits, and request statistics.

Endpoint#

GET /v1/account

API Description#

The Account API is designed to provide essential information about a team's account. It includes details about the team, API rate limits, and usage statistics. This information is crucial for managing API usage, understanding team configurations, and ensuring compliance with rate limits. The API supports secure access through token-based authentication, ensuring that only authorized users can access their account information.
A successful response returns a JSON object with the following structure:
{
    "team_id": 1,
    "team_name": "Test Team",
    "api_request_rate_limit": 60,
    "can_toggle_short_url": false,
    "product_search_results_max": 10000,
    "requests_total_so_far": 5,
    "requests_made_since_last_payment": 5,
    "products": [
		{
			"product": "AFFILIFEED",
			"count": 0,
			"billing_cycle": null
		},
		{
			"product": "PLATFORM",
			"count": 0,
			"billing_cycle": null
		},
		{
			"product": "CURATE",
			"count": 0,
			"billing_cycle": null
		},
		{
			"product": "API",
			"count": 1234,
			"billing_cycle": {
				"start": "2025-06-15T15:22:35+00:00",
				"end": "2025-07-15T15:22:35+00:00",
				"days_remaining": 0
			}
		}
	],
	"meta": {
		"trace_id": "01980eae-de82-72de-8402-cd5ad0588cee"
	}
}
   

Response Fields#

Field NameTypeDescription
team_idintegerThe unique identifier for the team.
team_namestringThe name of the team.
api_request_rate_limitintegerThe maximum number of API requests allowed per minute.
product_search_results_maxintegerThe maximum number of product search results that can be returned.
requests_total_so_farintegerThe total number of API requests made by the team so far.
requests_made_since_last_paymentintegerThe number of API requests made since the last payment.
productsarrayThe products that the bearer token has active, the count of requests (if applicable), and the blling cycle for that product.

Parameters#

None
Modified at 2025-07-15 15:36:42
Previous
Affiliate.com API Endpoints
Next
Get User Team Account Information