> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.getdial.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.getdial.ai/_mcp/server.

# Get 10DLC registration

GET https://api.getdial.ai/api/v1/numbers/{id}/10dlc

Returns this number's 10DLC registration, including the field set that was submitted and a short-lived URL for the opt-in screenshot.
A number's registration status is also available — without the submitted details — as the `tenDlc` object on the phone number itself.

Reference: https://docs.getdial.ai/api-reference/rest-api/phone-numbers/get-ten-dlc-registration

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: rest
  version: 1.0.0
paths:
  /api/v1/numbers/{id}/10dlc:
    get:
      operationId: get-ten-dlc-registration
      summary: Get 10DLC registration
      description: >-
        Returns this number's 10DLC registration, including the field set that
        was submitted and a short-lived URL for the opt-in screenshot.

        A number's registration status is also available — without the submitted
        details — as the `tenDlc` object on the phone number itself.
      tags:
        - phoneNumbers
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
        - name: Authorization
          in: header
          description: 'Your Dial API key, sent as `Authorization: Bearer sk_live_...`'
          required: true
          schema:
            type: string
      responses:
        '200':
          description: The registration.
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Phone
                  numbers_getTenDlcRegistration_Response_200
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: >-
            10DLC registration isn't available here. Either it doesn't apply to
            this number — it isn't US, or it has the `imessage` capability
            (error code `tendlc_not_applicable`) — or the account isn't
            pay-as-you-go and has no existing registration for the number (error
            code `tendlc_not_available`). The `tenDlc` object on the phone
            number is null in both cases.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: >-
            No registration has been submitted for this number, or the number
            doesn't exist on this account.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
servers:
  - url: https://api.getdial.ai
    description: Dial REST API
components:
  schemas:
    TenDlcRegistrationStatus:
      type: string
      enum:
        - in_review
        - with_carrier
        - approved
        - rejected
      description: >-
        Where the registration stands. Unlike the `tenDlc` summary on a phone
        number, this object only exists once something has been submitted, so
        `not_registered` never appears here.
      title: TenDlcRegistrationStatus
    TenDlcRegistrationKind:
      type: string
      enum:
        - sole_proprietor
        - business
      description: >-
        Who the number is registered as. A sole proprietor operates under their
        own name and has no EIN — lower throughput, quicker to approve. A
        business is a registered company with an EIN.
      title: TenDlcRegistrationKind
    TenDlcRegistration:
      type: object
      properties:
        phoneNumberId:
          type: string
        status:
          $ref: '#/components/schemas/TenDlcRegistrationStatus'
          description: >-
            Where the registration stands. Unlike the `tenDlc` summary on a
            phone number, this object only exists once something has been
            submitted, so `not_registered` never appears here.
        kind:
          $ref: '#/components/schemas/TenDlcRegistrationKind'
          description: >-
            Who the number is registered as. A sole proprietor operates under
            their own name and has no EIN — lower throughput, quicker to
            approve. A business is a registered company with an EIN.
        data:
          type: object
          additionalProperties:
            description: Any type
          description: >-
            The submitted field set, as sent. Which keys are present depends on
            `kind` — see Submit 10DLC registration for the full field list.
        optInImageUrl:
          type: string
          description: >-
            Short-lived URL of the submitted opt-in flow screenshot. Expires a
            few minutes after the response is generated; re-read this resource
            for a fresh one.
        feeCents:
          type: integer
          description: The one-time registration fee charged for this number, in USD cents.
        reason:
          type:
            - string
            - 'null'
          description: What needs to change. Non-null only when `status` is `rejected`.
        submittedAt:
          type: string
          format: date-time
        reviewedAt:
          type:
            - string
            - 'null'
          format: date-time
          description: When the registration was approved or rejected; null until then.
      required:
        - phoneNumberId
        - status
        - kind
        - data
        - feeCents
        - reason
        - submittedAt
        - reviewedAt
      description: >-
        A number's 10DLC registration, including the field set that was
        submitted. Returned by Get and Submit 10DLC registration.
      title: TenDlcRegistration
    Phone numbers_getTenDlcRegistration_Response_200:
      type: object
      properties:
        registration:
          $ref: '#/components/schemas/TenDlcRegistration'
      title: Phone numbers_getTenDlcRegistration_Response_200
    ErrorError:
      oneOf:
        - type: string
        - type: object
          additionalProperties:
            description: Any type
      description: An error message, or a validation-error object for 400 responses.
      title: ErrorError
    Error:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/ErrorError'
          description: An error message, or a validation-error object for 400 responses.
      title: Error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Your Dial API key, sent as `Authorization: Bearer sk_live_...`'

```

## Examples



**Request**

```json
{}
```

**Response**

```json
{
  "registration": {
    "phoneNumberId": "+14155552671",
    "status": "in_review",
    "kind": "business",
    "data": {
      "businessName": "Acme Corp",
      "ein": "12-3456789",
      "address": "123 Main St, Springfield, IL 62704",
      "contactName": "Jane Doe",
      "contactPhone": "+14155551234",
      "email": "contact@acmecorp.com",
      "useCase": "Customer support and notifications"
    },
    "feeCents": 2500,
    "reason": null,
    "submittedAt": "2024-01-15T09:30:00Z",
    "reviewedAt": null,
    "optInImageUrl": "https://cdn.getdial.ai/optin/abc123.png?expires=1687000000"
  }
}
```

**SDK Code**

```python
import requests

url = "https://api.getdial.ai/api/v1/numbers/id/10dlc"

payload = {}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.get(url, json=payload, headers=headers)

print(response.json())
```

```javascript
const url = 'https://api.getdial.ai/api/v1/numbers/id/10dlc';
const options = {
  method: 'GET',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://api.getdial.ai/api/v1/numbers/id/10dlc"

	payload := strings.NewReader("{}")

	req, _ := http.NewRequest("GET", url, payload)

	req.Header.Add("Authorization", "Bearer <token>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://api.getdial.ai/api/v1/numbers/id/10dlc")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{}"

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.getdial.ai/api/v1/numbers/id/10dlc")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{}")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.getdial.ai/api/v1/numbers/id/10dlc', [
  'body' => '{}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://api.getdial.ai/api/v1/numbers/id/10dlc");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://api.getdial.ai/api/v1/numbers/id/10dlc")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```