The Trade Desk IPAddress Data API

IP-address ingestion endpoints of the TTD Data API — upload first-party or third-party IP-address-based targeting data for use in audience targeting. Discovered 2026-08-13 in the provider-published Swagger document at https://usw-data.adsrvr.org/swagger/v1/swagger.json, which carries two operations under the IPAddress tag that were absent from the earlier harvest.

Operations 2

POST /data/firstpartyipaddress Upload first-party IP address data for the specified ID. #
POST /data/thirdpartyipaddress Upload third-party IP address data for the specified ID. #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/trade-desk-ipaddress-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

trade-desk-ipaddress-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: TTD Data IP Address API
  version: v0.1
  description: The Trade Desk Data API IP-address ingestion endpoints. Upload first-party or third-party IP-address-based targeting data for use in audience targeting. Harvested verbatim from the provider-published Swagger document at https://usw-data.adsrvr.org/swagger/v1/swagger.json, then split by tag by the API Evangelist enrichment pipeline.
servers:
- url: https://usw-data.adsrvr.org
  description: US West Coast data center
- url: https://use-data.adsrvr.org
  description: US East Coast data center
- url: https://euw-data.adsrvr.org
  description: UK/EU data center
- url: https://sin-data.adsrvr.org
  description: APAC data center
- url: https://tok-data.adsrvr.org
  description: Tokyo data center
tags:
- name: IPAddress
paths:
  /data/firstpartyipaddress:
    post:
      tags:
      - IPAddress
      summary: Upload first-party IP address data for the specified ID.
      operationId: IngestFirstPartyIPAddressData
      parameters:
      - name: TTD-Auth
        in: header
        description: Data API token for authentication.
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IPAddressDataRequest'
        required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IPAddressDataServerResponse'
        '400':
          description: Bad Request - Invalid JSON, missing items, advertiser not configured, or policy restrictions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IPAddressDataServerResponse'
        '401':
          description: Unauthorized - Invalid or missing authentication token
          content:
            application/json:
              schema:
                type: string
        '403':
          description: Forbidden - Cannot upload IP address data for this advertiser
          content:
            application/json:
              schema:
                type: string
        '429':
          description: Too Many Requests - Rate limit exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IPAddressDataServerResponse'
        '500':
          description: Internal Server Error - Unexpected server error
        '503':
          description: Service Unavailable - Handler disabled or request dropped
      servers:
      - url: https://usw-data.adsrvr.org
  /data/thirdpartyipaddress:
    post:
      tags:
      - IPAddress
      summary: Upload third-party IP address data for the specified ID.
      operationId: IngestThirdPartyIPAddressData
      parameters:
      - name: TTD-Auth
        in: header
        description: Data API token for authentication.
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IPAddressDataRequest'
        required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IPAddressDataServerResponse'
        '400':
          description: Bad Request - Invalid JSON, missing items, data provider not configured, or policy restrictions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IPAddressDataServerResponse'
        '401':
          description: Unauthorized - Invalid or missing authentication token
          content:
            application/json:
              schema:
                type: string
        '403':
          description: Forbidden - Cannot upload IP address data for this data provider
          content:
            application/json:
              schema:
                type: string
        '429':
          description: Too Many Requests - Rate limit exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IPAddressDataServerResponse'
        '500':
          description: Internal Server Error - Unexpected server error
        '503':
          description: Service Unavailable - Handler disabled or request dropped
      servers:
      - url: https://usw-data.adsrvr.org
components:
  schemas:
    IPAddressData:
      required:
      - Name
      type: object
      properties:
        Name:
          type: string
        TimestampUtc:
          type:
          - string
          - 'null'
          format: date-time
        TtlInMinutes:
          type:
          - integer
          - 'null'
          format: int32
        TargetingDataMetadataId:
          type:
          - integer
          - 'null'
          format: int64
        IPAddresses:
          type:
          - array
          - 'null'
          items:
            type: string
        IPAddressRanges:
          type:
          - array
          - 'null'
          items:
            type: string
        ExpandedIpAddresses:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ExpandedIpAddress'
      additionalProperties: false
    IPAddressDataResponseErrorCode:
      enum:
      - Unknown
      - MissingDataOwnerId
      - DataOwnerIdNotMapped
      - InvalidIPAddress
      - InvalidIPAddressRange
      - EuIpTargetingNotAllowedForPartner
      - NotTargetable
      type: string
    IPAddressDataServerResponse:
      type: object
      properties:
        DataOwnerId:
          type:
          - string
          - 'null'
        FailedLines:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/IPAddressDataServerResponseLine'
      additionalProperties: false
    IPAddressDataRequest:
      required:
      - DataOwnerId
      type: object
      properties:
        DataOwnerId:
          type: string
        Items:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/IPAddressDataItem'
        DataLoadTraceId:
          type:
          - string
          - 'null'
      additionalProperties: false
    IPAddressDataServerResponseLine:
      type: object
      properties:
        DataName:
          type:
          - string
          - 'null'
        ErrorCode:
          $ref: '#/components/schemas/IPAddressDataResponseErrorCode'
        IPAddress:
          type:
          - string
          - 'null'
        Message:
          type:
          - string
          - 'null'
        ItemNumber:
          type:
          - string
          - 'null'
        DataNumber:
          type:
          - string
          - 'null'
      additionalProperties: false
    ExpandedIpAddress:
      type: object
      properties:
        IPAddress:
          type:
          - string
          - 'null'
        IPAddressRange:
          type:
          - string
          - 'null'
        TargetingDataMetadataId:
          type:
          - integer
          - 'null'
          format: int64
      additionalProperties: false
    IPAddressDataItem:
      required:
      - Data
      type: object
      properties:
        TDID:
          type:
          - string
          - 'null'
        DAID:
          type:
          - string
          - 'null'
        UID2:
          type:
          - string
          - 'null'
        UID2Token:
          type:
          - string
          - 'null'
        RampID:
          type:
          - string
          - 'null'
        CoreID:
          type:
          - string
          - 'null'
        EUID:
          type:
          - string
          - 'null'
        EUIDToken:
          type:
          - string
          - 'null'
        ID5:
          type:
          - string
          - 'null'
        NetID:
          type:
          - string
          - 'null'
        FirstID:
          type:
          - string
          - 'null'
        UtiqID:
          type:
          - string
          - 'null'
        MerkuryID:
          type:
          - string
          - 'null'
        RealID:
          type:
          - string
          - 'null'
        IqviaPPID:
          type:
          - string
          - 'null'
        Data:
          type: array
          items:
            $ref: '#/components/schemas/IPAddressData'
        CookieMappingPartnerId:
          type:
          - string
          - 'null'
      additionalProperties: false